Enum rust_ipfs::unixfs::UnixfsStatus
source · pub enum UnixfsStatus {
ProgressStatus {
written: usize,
total_size: Option<usize>,
},
CompletedStatus {
path: IpfsPath,
written: usize,
total_size: Option<usize>,
},
FailedStatus {
written: usize,
total_size: Option<usize>,
error: Option<Error>,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for UnixfsStatus
impl Send for UnixfsStatus
impl Sync for UnixfsStatus
impl Unpin for UnixfsStatus
impl UnwindSafe for UnixfsStatus
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