pub trait Property: Sync + Send + Clone + Debug + Hash + PartialEq + Eq {
// Required method
fn name(&self) -> String;
}
Expand description
Properties for storage collections or items.
See Item::Property
.
Required Methods§
Object Safety§
This trait is not object safe.