Trait ChildMetaExt

Source
pub trait ChildMetaExt: 'static {
    // Required methods
    fn get_actor(&self) -> Option<Actor>;
    fn get_container(&self) -> Option<Container>;
}
Expand description

Trait containing all ChildMeta methods.

§Implementors

ChildMeta, LayoutMeta

Required Methods§

Source

fn get_actor(&self) -> Option<Actor>

Retrieves the actor wrapped by self

§Returns

a Actor

Source

fn get_container(&self) -> Option<Container>

Retrieves the container using self

§Returns

a Container

Implementors§