pub trait ChildProxyExtManual {
    fn get_child_property(&self, name: &str) -> Option<Value>;
    fn set_child_property(
        &self,
        name: &str,
        value: &dyn ToValue
    ) -> Result<(), BoolError>; }

Required Methods

Implementors