pub trait IntoPropValue<T> {
// Required method
fn into_prop_value(self) -> T;
}
Expand description
A trait similar to Into<T>
which allows conversion to a value of a Properties
struct.
Required Methods§
sourcefn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert self
to a value of a Properties
struct.