pub trait ChildProxyExtManual: Sealed + IsA<ChildProxy> + 'static {
    // Provided methods
    fn lookup(&self, name: &str) -> Result<(Object, ParamSpec), BoolError> { ... }
    fn child_property<V: for<'b> FromValue<'b> + 'static>(
        &self,
        name: &str
    ) -> V { ... }
    fn child_property_value(&self, name: &str) -> Value { ... }
    fn set_child_property(&self, name: &str, value: impl Into<Value>) { ... }
    fn set_child_property_from_value(&self, name: &str, value: &Value) { ... }
}

Provided Methods§

source

fn lookup(&self, name: &str) -> Result<(Object, ParamSpec), BoolError>

source

fn child_property<V: for<'b> FromValue<'b> + 'static>(&self, name: &str) -> V

source

fn child_property_value(&self, name: &str) -> Value

source

fn set_child_property(&self, name: &str, value: impl Into<Value>)

source

fn set_child_property_from_value(&self, name: &str, value: &Value)

Object Safety§

This trait is not object safe.

Implementors§