Trait components::ChildMetaExt[][src]

pub trait ChildMetaExt: 'static {
    pub fn get_actor(&self) -> Option<Actor>;
pub fn get_container(&self) -> Option<Container>; }

Trait containing all ChildMeta methods.

Implementors

ChildMeta, LayoutMeta

Required methods

pub fn get_actor(&self) -> Option<Actor>[src]

Retrieves the actor wrapped by self

Returns

a Actor

pub fn get_container(&self) -> Option<Container>[src]

Retrieves the container using self

Returns

a Container

Loading content...

Implementors

impl<O> ChildMetaExt for O where
    O: IsA<ChildMeta>, 
[src]

Loading content...