Enum iroh_blobs::util::progress::ProgressSendError   
source · pub enum ProgressSendError {
    ReceiverDropped,
}Expand description
An error that can occur when sending progress messages.
Really the only error that can occur is if the receiver is dropped.
Variants§
ReceiverDropped
The receiver was dropped.
Trait Implementations§
source§impl Clone for ProgressSendError
 
impl Clone for ProgressSendError
source§fn clone(&self) -> ProgressSendError
 
fn clone(&self) -> ProgressSendError
Returns a copy 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 ProgressSendError
 
impl Debug for ProgressSendError
source§impl Display for ProgressSendError
 
impl Display for ProgressSendError
source§impl Error for ProgressSendError
 
impl Error for ProgressSendError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<ProgressSendError> for Error
 
impl From<ProgressSendError> for Error
source§fn from(e: ProgressSendError) -> Self
 
fn from(e: ProgressSendError) -> Self
Converts to this type from the input type.
source§impl From<ProgressSendError> for GetError
 
impl From<ProgressSendError> for GetError
source§fn from(value: ProgressSendError) -> Self
 
fn from(value: ProgressSendError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProgressSendError
impl RefUnwindSafe for ProgressSendError
impl Send for ProgressSendError
impl Sync for ProgressSendError
impl Unpin for ProgressSendError
impl UnwindSafe for ProgressSendError
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
    T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
 
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
    T: 'a,
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