pub(crate) struct Pointers<T> {
inner: UnsafeCell<PointersInner<T>>,
}
Expand description
Previous / next pointers.
Fields§
§inner: UnsafeCell<PointersInner<T>>
Implementations§
Trait Implementations§
impl<T: Send> Send for Pointers<T>
impl<T: Sync> Sync for Pointers<T>
Auto Trait Implementations§
impl<T> !Freeze for Pointers<T>
impl<T> !RefUnwindSafe for Pointers<T>
impl<T> !Unpin for Pointers<T>
impl<T> UnwindSafe for Pointers<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