pub enum ProglessError {
EmptyTotal,
TotalOverflow,
}Available on crate feature
progress only.Expand description
§Obligatory error type.
Variants§
Implementations§
Trait Implementations§
Source§impl AsRef<str> for ProglessError
impl AsRef<str> for ProglessError
Source§impl Clone for ProglessError
impl Clone for ProglessError
Source§fn clone(&self) -> ProglessError
fn clone(&self) -> ProglessError
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 ProglessError
impl Debug for ProglessError
Source§impl Display for ProglessError
impl Display for ProglessError
Source§impl Error for ProglessError
impl Error for ProglessError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl Hash for ProglessError
impl Hash for ProglessError
Source§impl PartialEq for ProglessError
impl PartialEq for ProglessError
impl Copy for ProglessError
impl Eq for ProglessError
impl StructuralPartialEq for ProglessError
Auto Trait Implementations§
impl Freeze for ProglessError
impl RefUnwindSafe for ProglessError
impl Send for ProglessError
impl Sync for ProglessError
impl Unpin for ProglessError
impl UnsafeUnpin for ProglessError
impl UnwindSafe for ProglessError
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