[][src]Struct pix_engine::PixEngine

pub struct PixEngine<S> where
    S: State
{ /* fields omitted */ }

Primary PixEngine object that controls Window and StateData

Methods

impl<S> PixEngine<S> where
    S: State
[src]

pub fn new(
    app_name: String,
    state: S,
    screen_width: u32,
    screen_height: u32,
    vsync: bool
) -> PixEngineResult<Self>
[src]

Create a new PixEngine instance

pub fn set_icon(&mut self, path: &str) -> PixEngineResult<()>[src]

Set a custom window icon

pub fn fullscreen(&mut self, val: bool) -> PixEngineResult<()>[src]

Toggle fullscreen

pub fn vsync(&mut self, val: bool) -> PixEngineResult<()>[src]

Toggle vsync

pub fn set_audio_sample_rate(&mut self, sample_rate: i32) -> PixEngineResult<()>[src]

Set audio sample rate

pub fn run(&mut self) -> PixEngineResult<()>[src]

Starts the engine loop. Will execute until one of on_create, on_update, or on_destroy returns false or the Window receives a termination event

Auto Trait Implementations

impl<S> !RefUnwindSafe for PixEngine<S>

impl<S> !Send for PixEngine<S>

impl<S> !Sync for PixEngine<S>

impl<S> Unpin for PixEngine<S> where
    S: Unpin

impl<S> !UnwindSafe for PixEngine<S>

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,