pub trait ValueIntoObject {
type Object;
// Required method
fn into_object(self) -> Option<Self::Object>;
}
Expand description
A trait that specifies how to turn the Value into
it’s sub types
Required Associated Types§
Required Methods§
sourcefn into_object(self) -> Option<Self::Object>
fn into_object(self) -> Option<Self::Object>
Tries to turn the value into it’s object representation