pub enum ProgressTaskError {
Atomic(SharedAtomicError),
Cell(SharedCellError),
}Variants§
Atomic(SharedAtomicError)
Cell(SharedCellError)
Trait Implementations§
Source§impl Clone for ProgressTaskError
impl Clone for ProgressTaskError
Source§fn clone(&self) -> ProgressTaskError
fn clone(&self) -> ProgressTaskError
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 ProgressTaskError
Source§impl Debug for ProgressTaskError
impl Debug for ProgressTaskError
impl Eq for ProgressTaskError
Source§fn from(e: SharedAtomicError) -> Self
fn from(e: SharedAtomicError) -> Self
Converts to this type from the input type.
Source§fn from(e: SharedCellError) -> Self
fn from(e: SharedCellError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProgressTaskError
impl PartialEq for ProgressTaskError
impl StructuralPartialEq for ProgressTaskError
Auto Trait Implementations§
impl Freeze for ProgressTaskError
impl RefUnwindSafe for ProgressTaskError
impl Send for ProgressTaskError
impl Sync for ProgressTaskError
impl Unpin for ProgressTaskError
impl UnsafeUnpin for ProgressTaskError
impl UnwindSafe for ProgressTaskError
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