[][src]Struct youxi::engine::App

pub struct App<'a, D> {
    pub data: D,
    // some fields omitted
}

Fields

data: D

Methods

impl<'a, D> App<'a, D> where
    D: OnStart + OnUpdate + OnEvent + OnStop
[src]

pub fn construct<T>(
    (width, height): (i32, i32),
    pixel_size: i32,
    title: T,
    data: D
) -> Self where
    T: Into<String>, 
[src]

pub fn with_font(&mut self, name: &'static str, data: &[u8])[src]

pub fn persist_buffer(&mut self)[src]

pub fn run(&mut self)[src]

Auto Trait Implementations

impl<'a, D> !Send for App<'a, D>

impl<'a, D> !Sync for App<'a, D>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> Erased for T

impl<T> Downcast for T where
    T: Any