pub trait Value:
Debug
+ Sync
+ Send
+ AsAny {
// Required methods
fn get_baseval(&self) -> BaseValue;
fn clone_box(&self) -> Box<dyn Value>;
fn eq_box(&self, other: &Box<dyn Value>) -> bool;
}Required Methods§
fn get_baseval(&self) -> BaseValue
fn clone_box(&self) -> Box<dyn Value>
fn eq_box(&self, other: &Box<dyn Value>) -> bool
Implementations§
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".