pub enum RequeuePiError {
TryAgain,
}Variants§
TryAgain
The futex value did not match the expected value, or the thread was woken up without being requeued to the PiFutex first.
Trait Implementations§
Source§impl Clone for RequeuePiError
impl Clone for RequeuePiError
Source§fn clone(&self) -> RequeuePiError
fn clone(&self) -> RequeuePiError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RequeuePiError
Source§impl Debug for RequeuePiError
impl Debug for RequeuePiError
impl Eq for RequeuePiError
Source§impl PartialEq for RequeuePiError
impl PartialEq for RequeuePiError
Source§fn eq(&self, other: &RequeuePiError) -> bool
fn eq(&self, other: &RequeuePiError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RequeuePiError
Auto Trait Implementations§
impl Freeze for RequeuePiError
impl RefUnwindSafe for RequeuePiError
impl Send for RequeuePiError
impl Sync for RequeuePiError
impl Unpin for RequeuePiError
impl UnsafeUnpin for RequeuePiError
impl UnwindSafe for RequeuePiError
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