[][src]Struct specs::BatchUncheckedWorld

pub struct BatchUncheckedWorld<'a>(pub &'a World);

The BatchUncheckedWorld wraps an instance of the world. You have to specify this as SystemData for a System implementing BatchController.

Trait Implementations

impl<'a> DynamicSystemData<'a> for BatchUncheckedWorld<'a>[src]

type Accessor = BatchAccessor

The accessor of the SystemData, which specifies the read and write dependencies and does the fetching. Read more

Auto Trait Implementations

impl<'a> Send for BatchUncheckedWorld<'a>

impl<'a> Unpin for BatchUncheckedWorld<'a>

impl<'a> Sync for BatchUncheckedWorld<'a>

impl<'a> !UnwindSafe for BatchUncheckedWorld<'a>

impl<'a> !RefUnwindSafe for BatchUncheckedWorld<'a>

Blanket Implementations

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<'a, T> DynamicSystemData<'a> for T where
    T: SystemData<'a>, 
[src]

type Accessor = StaticAccessor<T>

The accessor of the SystemData, which specifies the read and write dependencies and does the fetching. Read more

impl<T> Any for T where
    T: Any

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]