pub struct BehaviorRefItem<'__w, '__s, T: Behavior> { /* private fields */ }Expand description
Automatically generated WorldQuery item type for BehaviorRef, returned when iterating over query results.
Trait Implementations§
Source§impl<T: Behavior> AsRef<T> for BehaviorRefItem<'_, '_, T>
impl<T: Behavior> AsRef<T> for BehaviorRefItem<'_, '_, T>
Source§impl<T: Behavior> BehaviorItem for BehaviorRefItem<'_, '_, T>
impl<T: Behavior> BehaviorItem for BehaviorRefItem<'_, '_, T>
Source§fn current_index(&self) -> BehaviorIndex
fn current_index(&self) -> BehaviorIndex
Returns the
BehaviorIndex associated with the current Behavior state.Source§fn enumerate(&self) -> impl Iterator<Item = (BehaviorIndex, &T)> + '_
fn enumerate(&self) -> impl Iterator<Item = (BehaviorIndex, &T)> + '_
Returns an iterator over all (
BehaviorIndex, Behavior) pairs in the stack, including the current one. Read moreSource§fn get(&self, BehaviorIndex: BehaviorIndex) -> Option<&T>
fn get(&self, BehaviorIndex: BehaviorIndex) -> Option<&T>
Returns a reference to the
Behavior at the given BehaviorIndex, if it exists.Source§fn has_transition(&self) -> bool
fn has_transition(&self) -> bool
Source§fn index(&self) -> BehaviorIndex
fn index(&self) -> BehaviorIndex
👎Deprecated since 0.3.1: use
current_index insteadReturns the
BehaviorIndex associated with the current Behavior state.Source§fn has_index(&self, index: BehaviorIndex) -> bool
fn has_index(&self, index: BehaviorIndex) -> bool
Source§impl<T: Behavior> Deref for BehaviorRefItem<'_, '_, T>
impl<T: Behavior> Deref for BehaviorRefItem<'_, '_, T>
Source§impl<T: Behavior> DetectChanges for BehaviorRefItem<'_, '_, T>
impl<T: Behavior> DetectChanges for BehaviorRefItem<'_, '_, T>
Source§fn is_changed(&self) -> bool
fn is_changed(&self) -> bool
Returns
true if this value was added or mutably dereferenced
either since the last time the system ran or, if the system never ran,
since the beginning of the program. Read moreSource§fn last_changed(&self) -> Tick
fn last_changed(&self) -> Tick
Returns the change tick recording the time this data was most recently changed. Read more
Source§fn changed_by(&self) -> MaybeLocation
fn changed_by(&self) -> MaybeLocation
The location that last caused this to change.
Source§impl<T: Behavior> Index<BehaviorIndex> for BehaviorRefItem<'_, '_, T>
impl<T: Behavior> Index<BehaviorIndex> for BehaviorRefItem<'_, '_, T>
Auto Trait Implementations§
impl<'__w, '__s, T> Freeze for BehaviorRefItem<'__w, '__s, T>
impl<'__w, '__s, T> RefUnwindSafe for BehaviorRefItem<'__w, '__s, T>where
T: RefUnwindSafe,
impl<'__w, '__s, T> Send for BehaviorRefItem<'__w, '__s, T>
impl<'__w, '__s, T> Sync for BehaviorRefItem<'__w, '__s, T>
impl<'__w, '__s, T> Unpin for BehaviorRefItem<'__w, '__s, T>
impl<'__w, '__s, T> UnwindSafe for BehaviorRefItem<'__w, '__s, 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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.