pub trait ValueAsObject {
type Object: Object;
// Required method
fn as_object(&self) -> Option<&Self::Object>;
}Expand description
Trait to allow Value as an object
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".