pub trait Value: Reflect + Send {
// Required methods
fn clone_box(&self) -> Box<dyn Value>;
fn into_box_reflect(self: Box<Self>) -> Box<dyn Reflect>;
}Expand description
Trait of values that can be edited by an Inspector through reflection.