pub trait ObjectImpl<T: ObjectBase>: AnyImpl + 'static {
    fn set_property(&self, _obj: &Object, _id: u32, _value: &Value) { ... }
    fn get_property(&self, _obj: &Object, _id: u32) -> Result<Value, ()> { ... }
    fn constructed(&self, obj: &T) { ... }
}

Provided Methods

Implementations

Trait Implementations

Implementations on Foreign Types

Implementors