Struct specs::StaticAccessor
source · [−]pub struct StaticAccessor<T> { /* private fields */ }
Expand description
The static accessor that is used for SystemData
.
Trait Implementations
sourceimpl<'a, T> Accessor for StaticAccessor<T> where
T: SystemData<'a>,
impl<'a, T> Accessor for StaticAccessor<T> where
T: SystemData<'a>,
sourcefn try_new() -> Option<StaticAccessor<T>>
fn try_new() -> Option<StaticAccessor<T>>
Tries to create a new instance of this type. This one returns Some
in
case there is a default, otherwise the system needs to override
System::accessor
. Read more
sourcefn reads(&self) -> Vec<ResourceId, Global>
fn reads(&self) -> Vec<ResourceId, Global>
A list of ResourceId
s the bundle
needs read access to in order to
build the target resource bundle. Read more
sourcefn writes(&self) -> Vec<ResourceId, Global>
fn writes(&self) -> Vec<ResourceId, Global>
A list of ResourceId
s the bundle
needs write access to in order to
build the target resource bundle. Read more
sourceimpl<T> Default for StaticAccessor<T> where
T: Default,
impl<T> Default for StaticAccessor<T> where
T: Default,
sourcefn default() -> StaticAccessor<T>
fn default() -> StaticAccessor<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for StaticAccessor<T>
impl<T> Send for StaticAccessor<T>
impl<T> Sync for StaticAccessor<T>
impl<T> Unpin for StaticAccessor<T>
impl<T> UnwindSafe for StaticAccessor<T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> TryDefault for T where
T: Default,
impl<T> TryDefault for T where
T: Default,
sourcefn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
sourcefn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls try_default
and panics on an error case.