[][src]Trait geng::ui::Container

pub trait Container {
    type Leaf;
    fn leaf(&self) -> &Self::Leaf;
}

Associated Types

type Leaf

Loading content...

Required methods

fn leaf(&self) -> &Self::Leaf

Loading content...

Implementations on Foreign Types

impl<T: Container, '_> Container for &'_ mut T[src]

type Leaf = T::Leaf

Loading content...

Implementors

impl Container for Button[src]

type Leaf = Self

impl<T: Container, F> Container for EventHandler<T, F>[src]

type Leaf = T::Leaf

Loading content...