Struct pancake_engine_ssi::ds_n_a::atomic_linked_list::ListNode
source · pub struct ListNode<T> {
pub elem: T,
pub next: AtomicPtr<ListNode<T>>,
}Fields§
§elem: T§next: AtomicPtr<ListNode<T>>Implementations§
Auto Trait Implementations§
impl<T> RefUnwindSafe for ListNode<T>where
T: RefUnwindSafe,
impl<T> Send for ListNode<T>where
T: Send,
impl<T> Sync for ListNode<T>where
T: Sync,
impl<T> Unpin for ListNode<T>where
T: Unpin,
impl<T> UnwindSafe for ListNode<T>where
T: UnwindSafe + 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