pub struct RefreshWrapperReport {
pub manifest: String,
pub wrapper: String,
pub cataloged: usize,
pub added: usize,
pub removed: usize,
pub hashed: usize,
pub preserved: usize,
pub bytes: u64,
pub wrote: bool,
}Expand description
Result of refresh_wrapper. This is the bounded batch counterpart to
refresh: every asset declared by one wrapper is reconciled, while
unrelated wrappers and bytes are untouched.
Fields§
§manifest: String§wrapper: String§cataloged: usize§added: usize§removed: usize§hashed: usize§preserved: usize§bytes: u64§wrote: boolTrait Implementations§
Source§impl Debug for RefreshWrapperReport
impl Debug for RefreshWrapperReport
Auto Trait Implementations§
impl Freeze for RefreshWrapperReport
impl RefUnwindSafe for RefreshWrapperReport
impl Send for RefreshWrapperReport
impl Sync for RefreshWrapperReport
impl Unpin for RefreshWrapperReport
impl UnsafeUnpin for RefreshWrapperReport
impl UnwindSafe for RefreshWrapperReport
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