Struct raui_tetra_renderer::simple_host::TetraSimpleHost[][src]

pub struct TetraSimpleHost {
    pub application: Application,
    pub resources: TetraResources,
    pub interactions: TetraInteractionsEngine,
    pub scaling: CoordsMappingScaling,
}

Fields

application: Applicationresources: TetraResourcesinteractions: TetraInteractionsEnginescaling: CoordsMappingScaling

Implementations

impl TetraSimpleHost[src]

pub fn new<'a, F, T, S>(
    context: &mut Context,
    tree: WidgetNode,
    fonts: F,
    textures: T,
    setup: S
) -> Result<Self> where
    F: IntoIterator<Item = &'a (&'a str, usize, Scalar, &'a str)>,
    T: IntoIterator<Item = &'a (&'a str, &'a str)>,
    S: FnMut(&mut Application), 
[src]

F: (id, font size, font scale, path) T: (id, path)

pub fn update(&mut self, context: &mut Context) -> Vec<Signal>[src]

pub fn draw(&mut self, context: &mut Context) -> Result[src]

pub fn event(&mut self, context: &mut Context, event: &Event)[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.