pub trait ChildProxyImplExt: ObjectSubclass {
    // Required 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);
}

Required 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)

Implementors§