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;
}
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;
}