PropertyValue

Trait PropertyValue 

Source
pub trait PropertyValue: Any + Debug {
    // Required method
    fn as_any(&self) -> &dyn Any;
}
Expand description

A value of a property.

Required Methods§

Source

fn as_any(&self) -> &dyn Any

Casts self to a &dyn Any

Implementors§

Source§

impl<T: Debug + 'static> PropertyValue for T