pub struct FetchRelatesExclusiveWrite<'a, R: ExclusiveRelation> { /* private fields */ }
Expand description
Fetch for the RelatesExclusive<&mut R>
query.
Trait Implementations§
Source§impl<'a, R> Fetch<'a> for FetchRelatesExclusiveWrite<'a, R>where
R: ExclusiveRelation,
impl<'a, R> Fetch<'a> for FetchRelatesExclusiveWrite<'a, R>where
R: ExclusiveRelation,
Source§unsafe fn touch_chunk(&mut self, chunk_idx: u32)
unsafe fn touch_chunk(&mut self, chunk_idx: u32)
Notifies this fetch that at least one item in the chunk will be accessed.
This method is called for each chunk in the archetype that is not skipped. Read more
Source§unsafe fn get_item(&mut self, idx: u32) -> (&'a mut R, EntityId)
unsafe fn get_item(&mut self, idx: u32) -> (&'a mut R, EntityId)
Returns fetched item at specified index. Read more
Auto Trait Implementations§
impl<'a, R> Freeze for FetchRelatesExclusiveWrite<'a, R>
impl<'a, R> RefUnwindSafe for FetchRelatesExclusiveWrite<'a, R>where
R: RefUnwindSafe,
impl<'a, R> !Send for FetchRelatesExclusiveWrite<'a, R>
impl<'a, R> !Sync for FetchRelatesExclusiveWrite<'a, R>
impl<'a, R> Unpin for FetchRelatesExclusiveWrite<'a, R>
impl<'a, R> !UnwindSafe for FetchRelatesExclusiveWrite<'a, R>
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