pub struct ListTail<'id, U: Flat> { /* private fields */ }Expand description
Tail cursor for O(1) repeated appends to a NearList via
Session::push_back.
Stores the position of the last segment appended — enabling the next
push_back to link directly without walking the segment chain.
Like Ref, ListTail is branded with 'id and cannot escape the
session closure.
Trait Implementations§
Auto Trait Implementations§
impl<'id, U> Freeze for ListTail<'id, U>
impl<'id, U> RefUnwindSafe for ListTail<'id, U>where
U: RefUnwindSafe,
impl<'id, U> Send for ListTail<'id, U>where
U: Send,
impl<'id, U> Sync for ListTail<'id, U>where
U: Sync,
impl<'id, U> Unpin for ListTail<'id, U>where
U: Unpin,
impl<'id, U> UnwindSafe for ListTail<'id, U>where
U: UnwindSafe,
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