pub trait IntoOptPropValue<T> {
// Required method
fn into_opt_prop_value(self) -> Option<T>;
}
Expand description
A trait similar to Into<Option<T>>
which allows conversion to an optional value of a
Properties
struct.
Required Methods§
Sourcefn into_opt_prop_value(self) -> Option<T>
fn into_opt_prop_value(self) -> Option<T>
Convert self
to an optional value of a Properties
struct.