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.
Required Methods§
fn into_property_with_key(self, key: Key) -> Property<Key>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".