struct RawLinks<T>(*mut [Bucket<T>]);
Expand description
Access to the links
value in a slice of buckets.
It’s important that no other field is accessed, since it may have been
freed in a Drain
iterator.
Tuple Fields§
§0: *mut [Bucket<T>]
Trait Implementations§
impl<T> Copy for RawLinks<T>
Auto Trait Implementations§
impl<T> Freeze for RawLinks<T>
impl<T> RefUnwindSafe for RawLinks<T>where
T: RefUnwindSafe,
impl<T> !Send for RawLinks<T>
impl<T> !Sync for RawLinks<T>
impl<T> Unpin for RawLinks<T>
impl<T> UnwindSafe for RawLinks<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