Trait IValue
Source pub trait IValue: Any + Display {
// Required method
fn as_any(&self) -> &dyn Any;
}
Expand description
Returns the value as a &dyn Any trait object.
Returns true if the inner type is the same as T.
Returns some reference to the inner value if it is of type T, or None if it isn’t.
Formats the value using the given formatter.
Read more