pub struct SimpleList<T> { /* private fields */ }Expand description
Original O(n) linked list - only use for small collections (<100 items) A lock-free ordered linked list implementation.
Implementations§
Trait Implementations§
impl<T: Send> Send for List<T>
impl<T: Send> Sync for List<T>
Auto Trait Implementations§
impl<T> !Freeze for List<T>
impl<T> RefUnwindSafe for List<T>
impl<T> Unpin for List<T>
impl<T> UnwindSafe for List<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