pub struct ElimStack<T, S: Stack<T>> {
    pub(crate) inner: S,
    pub(crate) slots: [Atomic<S::PushReq>; 16],
}Fields§
§inner: S§slots: [Atomic<S::PushReq>; 16]Trait Implementations§
Source§impl<T, S: Stack<T>> Stack<T> for ElimStack<T, S>
 
impl<T, S: Stack<T>> Stack<T> for ElimStack<T, S>
Auto Trait Implementations§
impl<T, S> !Freeze for ElimStack<T, S>
impl<T, S> RefUnwindSafe for ElimStack<T, S>
impl<T, S> Send for ElimStack<T, S>
impl<T, S> Sync for ElimStack<T, S>
impl<T, S> Unpin for ElimStack<T, S>where
    S: Unpin,
impl<T, S> UnwindSafe for ElimStack<T, S>
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