pub trait ToType {
// Required method
fn to_type<T: TypedProperty>(&self) -> ConversionResult<T>
where Self: Sized;
}Expand description
A helper trait implemented by PropertyValue to make string parsing/conversion easier
See implementers of TypedProperty for more