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>

Implementations on Foreign Types§

source§

impl<T: Component + ?Sized> Parent for &T

source§

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

Implementors§