pub struct RcuStack<T>where
T: Send,{ /* private fields */ }Expand description
A concurrent stack make out of linked nodes which are protected by RCU.
Implementations§
Trait Implementations§
impl<T> Send for RcuStack<T>where
T: Send,
impl<T> Sync for RcuStack<T>
Auto Trait Implementations§
impl<T> !Freeze for RcuStack<T>
impl<T> RefUnwindSafe for RcuStack<T>
impl<T> Unpin for RcuStack<T>
impl<T> UnwindSafe for RcuStack<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