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