pub trait ValueAsArray {
type Array: Array;
// Required method
fn as_array(&self) -> Option<&Self::Array>;
}
Expand description
Trait to allow accessing data inside a Value
pub trait ValueAsArray {
type Array: Array;
// Required method
fn as_array(&self) -> Option<&Self::Array>;
}
Trait to allow accessing data inside a Value