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