Trait void_app_api::Parent

source ·
pub trait Parent {
    // Required method
    fn children(&self) -> Vec<&dyn Component>;
}

Required Methods§

source

fn children(&self) -> Vec<&dyn Component>

Implementors§

source§

impl<T: Component> Parent for T