Struct bones_ecs::system::ResMutInit
source · pub struct ResMutInit<'a, T: HasSchema + FromWorld>(/* private fields */);
Expand description
SystemParam
for getting mutable access to a resource and initializing it if it doesn’t
already exist.
Use ResMut
if you don’t want to automatically initialize the resource.
Trait Implementations§
source§impl<'a, T: HasSchema + FromWorld> SystemParam for ResMutInit<'a, T>
impl<'a, T: HasSchema + FromWorld> SystemParam for ResMutInit<'a, T>
§type State = AtomicResource<T>
type State = AtomicResource<T>
The intermediate state for the parameter, that may be extracted from the world.
§type Param<'p> = ResMutInit<'p, T>
type Param<'p> = ResMutInit<'p, T>
The type of the parameter, ranging over the lifetime of the intermediate state. Read more
Auto Trait Implementations§
impl<'a, T> Freeze for ResMutInit<'a, T>
impl<'a, T> RefUnwindSafe for ResMutInit<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for ResMutInit<'a, T>
impl<'a, T> Sync for ResMutInit<'a, T>
impl<'a, T> Unpin for ResMutInit<'a, T>
impl<'a, T> !UnwindSafe for ResMutInit<'a, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more