Trait 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§