pub struct ResInit<'a, T: HasSchema + FromWorld>(/* private fields */);
Expand description
SystemParam
for getting read access to a resource and initialzing it if it doesn’t already
exist.
Use Res
if you don’t want to automatically initialize the resource.
Trait Implementations§
source§impl<'a, T: HasSchema + FromWorld> SystemParam for ResInit<'a, T>
impl<'a, T: HasSchema + FromWorld> SystemParam for ResInit<'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> = ResInit<'p, T>
type Param<'p> = ResInit<'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 ResInit<'a, T>
impl<'a, T> RefUnwindSafe for ResInit<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for ResInit<'a, T>
impl<'a, T> Sync for ResInit<'a, T>
impl<'a, T> Unpin for ResInit<'a, T>
impl<'a, T> UnwindSafe for ResInit<'a, T>where
T: RefUnwindSafe,
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