pub enum ResultReadyStat {
NotComplete = 0,
Complete = 1,
}Expand description
Result Ready Status
Value on reset: 0
Variants§
Trait Implementations§
Source§impl Clone for ResultReadyStat
impl Clone for ResultReadyStat
Source§fn clone(&self) -> ResultReadyStat
fn clone(&self) -> ResultReadyStat
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 ResultReadyStat
Source§impl Debug for ResultReadyStat
impl Debug for ResultReadyStat
impl Eq for ResultReadyStat
Source§impl From<ResultReadyStat> for bool
impl From<ResultReadyStat> for bool
Source§fn from(variant: ResultReadyStat) -> Self
fn from(variant: ResultReadyStat) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ResultReadyStat
impl PartialEq for ResultReadyStat
Source§fn eq(&self, other: &ResultReadyStat) -> bool
fn eq(&self, other: &ResultReadyStat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResultReadyStat
Auto Trait Implementations§
impl Freeze for ResultReadyStat
impl RefUnwindSafe for ResultReadyStat
impl Send for ResultReadyStat
impl Sync for ResultReadyStat
impl Unpin for ResultReadyStat
impl UnsafeUnpin for ResultReadyStat
impl UnwindSafe for ResultReadyStat
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