pub trait ChildProxyImplExt: Sealed + ObjectSubclass {
    // Provided methods
    fn parent_child_by_name(&self, name: &str) -> Option<Object> { ... }
    fn parent_child_by_index(&self, index: u32) -> Option<Object> { ... }
    fn parent_children_count(&self) -> u32 { ... }
    fn parent_child_added(&self, child: &Object, name: &str) { ... }
    fn parent_child_removed(&self, child: &Object, name: &str) { ... }
}

Provided Methods§

source

fn parent_child_by_name(&self, name: &str) -> Option<Object>

source

fn parent_child_by_index(&self, index: u32) -> Option<Object>

source

fn parent_children_count(&self) -> u32

source

fn parent_child_added(&self, child: &Object, name: &str)

source

fn parent_child_removed(&self, child: &Object, name: &str)

Object Safety§

This trait is not object safe.

Implementors§