Struct oxygengine_core::ecs::BatchUncheckedWorld [−][src]
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]
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
pub fn setup(
_accessor: &<BatchUncheckedWorld<'a> as DynamicSystemData<'a>>::Accessor,
_world: &mut World
)
[src]
_accessor: &<BatchUncheckedWorld<'a> as DynamicSystemData<'a>>::Accessor,
_world: &mut World
)
pub fn fetch(
_access: &<BatchUncheckedWorld<'a> as DynamicSystemData<'a>>::Accessor,
world: &'a World
) -> BatchUncheckedWorld<'a>
[src]
_access: &<BatchUncheckedWorld<'a> as DynamicSystemData<'a>>::Accessor,
world: &'a World
) -> BatchUncheckedWorld<'a>
Auto Trait Implementations
impl<'a> !RefUnwindSafe for BatchUncheckedWorld<'a>
impl<'a> !RefUnwindSafe for BatchUncheckedWorld<'a>
impl<'a> !Send for BatchUncheckedWorld<'a>
impl<'a> !Send for BatchUncheckedWorld<'a>
impl<'a> !Sync for BatchUncheckedWorld<'a>
impl<'a> !Sync for BatchUncheckedWorld<'a>
impl<'a> Unpin for BatchUncheckedWorld<'a>
impl<'a> Unpin for BatchUncheckedWorld<'a>
impl<'a> !UnwindSafe for BatchUncheckedWorld<'a>
impl<'a> !UnwindSafe for BatchUncheckedWorld<'a>