pub trait IntoPropertyWithKey<Key = String> {
// Required method
fn into_property_with_key(self, key: Key) -> Property<Key>;
}
Expand description
Trait implemented by all types that can be converted to a Property
.
pub trait IntoPropertyWithKey<Key = String> {
// Required method
fn into_property_with_key(self, key: Key) -> Property<Key>;
}
Trait implemented by all types that can be converted to a Property
.