pub enum AttemptStatus {
Desired,
Waiting,
Other,
}Variants§
Trait Implementations§
Source§impl Clone for AttemptStatus
impl Clone for AttemptStatus
Source§fn clone(&self) -> AttemptStatus
fn clone(&self) -> AttemptStatus
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 moreSource§impl PartialEq for AttemptStatus
impl PartialEq for AttemptStatus
Source§fn eq(&self, other: &AttemptStatus) -> bool
fn eq(&self, other: &AttemptStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AttemptStatus
impl Eq for AttemptStatus
impl StructuralPartialEq for AttemptStatus
Auto Trait Implementations§
impl Freeze for AttemptStatus
impl RefUnwindSafe for AttemptStatus
impl Send for AttemptStatus
impl Sync for AttemptStatus
impl Unpin for AttemptStatus
impl UnsafeUnpin for AttemptStatus
impl UnwindSafe for AttemptStatus
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