#[repr(u8)]pub enum StatusDone {
BUSY = 0,
COMPLETED = 1,
}Variants§
Implementations§
Source§impl StatusDone
impl StatusDone
Trait Implementations§
Source§impl Clone for StatusDone
impl Clone for StatusDone
Source§fn clone(&self) -> StatusDone
fn clone(&self) -> StatusDone
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StatusDone
impl Debug for StatusDone
Source§impl From<StatusDone> for u8
impl From<StatusDone> for u8
Source§fn from(val: StatusDone) -> u8
fn from(val: StatusDone) -> u8
Converts to this type from the input type.
Source§impl From<u8> for StatusDone
impl From<u8> for StatusDone
Source§fn from(val: u8) -> StatusDone
fn from(val: u8) -> StatusDone
Converts to this type from the input type.
Source§impl Ord for StatusDone
impl Ord for StatusDone
Source§fn cmp(&self, other: &StatusDone) -> Ordering
fn cmp(&self, other: &StatusDone) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StatusDone
impl PartialEq for StatusDone
Source§impl PartialOrd for StatusDone
impl PartialOrd for StatusDone
impl Copy for StatusDone
impl Eq for StatusDone
impl StructuralPartialEq for StatusDone
Auto Trait Implementations§
impl Freeze for StatusDone
impl RefUnwindSafe for StatusDone
impl Send for StatusDone
impl Sync for StatusDone
impl Unpin for StatusDone
impl UnwindSafe for StatusDone
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