Struct bones_lib::prelude::ResMutInit
pub struct ResMutInit<'a, T>(/* private fields */)
where
T: HasSchema + FromWorld;
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§
§impl<'a, T> Deref for ResMutInit<'a, T>
impl<'a, T> Deref for ResMutInit<'a, T>
§impl<'a, T> DerefMut for ResMutInit<'a, T>
impl<'a, T> DerefMut for ResMutInit<'a, T>
§fn deref_mut(&mut self) -> &mut <ResMutInit<'a, T> as Deref>::Target
fn deref_mut(&mut self) -> &mut <ResMutInit<'a, T> as Deref>::Target
Mutably dereferences the value.
§impl<'a, T> SystemParam for ResMutInit<'a, T>
impl<'a, T> 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
§fn get_state(world: &World) -> <ResMutInit<'a, T> as SystemParam>::State
fn get_state(world: &World) -> <ResMutInit<'a, T> as SystemParam>::State
This is called to produce the intermediate state of the system parameter. Read more
§fn borrow<'s>(
_world: &'s World,
state: &'s mut <ResMutInit<'a, T> as SystemParam>::State,
) -> <ResMutInit<'a, T> as SystemParam>::Param<'s>
fn borrow<'s>( _world: &'s World, state: &'s mut <ResMutInit<'a, T> as SystemParam>::State, ) -> <ResMutInit<'a, T> as SystemParam>::Param<'s>
This is used create an instance of the system parame, possibly borrowed from the
intermediate parameter state.
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