pub struct FetchRelatesWrite<'a, R: Relation> { /* private fields */ }
Expand description
Fetch for the Relates<&mut R>
query.
Trait Implementations§
Source§impl<'a, R> Fetch<'a> for FetchRelatesWrite<'a, R>where
R: Relation,
impl<'a, R> Fetch<'a> for FetchRelatesWrite<'a, R>where
R: Relation,
Source§type Item = RelatesWriteIter<'a, R>
type Item = RelatesWriteIter<'a, R>
Item type this fetch type yields.
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) -> RelatesWriteIter<'a, R> ⓘ
unsafe fn get_item(&mut self, idx: u32) -> RelatesWriteIter<'a, R> ⓘ
Returns fetched item at specified index. Read more
Auto Trait Implementations§
impl<'a, R> Freeze for FetchRelatesWrite<'a, R>
impl<'a, R> RefUnwindSafe for FetchRelatesWrite<'a, R>where
R: RefUnwindSafe,
impl<'a, R> !Send for FetchRelatesWrite<'a, R>
impl<'a, R> !Sync for FetchRelatesWrite<'a, R>
impl<'a, R> Unpin for FetchRelatesWrite<'a, R>
impl<'a, R> !UnwindSafe for FetchRelatesWrite<'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