enum Dequeue {
Data(*mut ReadinessNode),
Empty,
Inconsistent,
}
Expand description
Returned by dequeue_node
. Represents the different states as described by
the queue documentation on 1024cores.net.
Variants
Data(*mut ReadinessNode)
Empty
Inconsistent
Auto Trait Implementations
impl !RefUnwindSafe for Dequeue
impl !Send for Dequeue
impl !Sync for Dequeue
impl Unpin for Dequeue
impl !UnwindSafe for Dequeue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more