pub struct FetchMissingBlobsResult {
pub total: usize,
pub downloaded: usize,
pub failed: usize,
pub skipped: usize,
pub results: Vec<BlobFetchResult>,
}Expand description
Aggregate result of a blob-fetch operation.
Fields§
§total: usize§downloaded: usize§failed: usize§skipped: usize§results: Vec<BlobFetchResult>Trait Implementations§
Source§impl Clone for FetchMissingBlobsResult
impl Clone for FetchMissingBlobsResult
Source§fn clone(&self) -> FetchMissingBlobsResult
fn clone(&self) -> FetchMissingBlobsResult
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 moreAuto Trait Implementations§
impl Freeze for FetchMissingBlobsResult
impl RefUnwindSafe for FetchMissingBlobsResult
impl Send for FetchMissingBlobsResult
impl Sync for FetchMissingBlobsResult
impl Unpin for FetchMissingBlobsResult
impl UnsafeUnpin for FetchMissingBlobsResult
impl UnwindSafe for FetchMissingBlobsResult
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