[][src]Struct bulletml::RunnerData

pub struct RunnerData<'a, D: 'a> {
    pub bml: &'a BulletML,
    pub data: &'a mut D,
}

Set of data required during a BulletML run.

D is the type of the application data used in the AppRunner callbacks.

Fields

bml: &'a BulletMLdata: &'a mut D

Auto Trait Implementations

impl<'a, D> RefUnwindSafe for RunnerData<'a, D> where
    D: RefUnwindSafe

impl<'a, D> Send for RunnerData<'a, D> where
    D: Send

impl<'a, D> Sync for RunnerData<'a, D> where
    D: Sync

impl<'a, D> Unpin for RunnerData<'a, D>

impl<'a, D> !UnwindSafe for RunnerData<'a, D>

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.