pub trait ValueAsObject {
type Object: Object;
// Required method
fn as_object(&self) -> Option<&Self::Object>;
}
Expand description
Trait to allow Value as an object
pub trait ValueAsObject {
type Object: Object;
// Required method
fn as_object(&self) -> Option<&Self::Object>;
}
Trait to allow Value as an object