pub struct RefreshReport {
pub manifest: String,
pub path: String,
pub sha256: String,
pub bytes: u64,
pub wrappers: Vec<String>,
pub required: bool,
pub superseded_assets: Vec<String>,
pub wrote: bool,
}Expand description
Fields§
§manifest: String§path: String§sha256: String§bytes: u64§wrappers: Vec<String>§required: bool§superseded_assets: Vec<String>Older asset coordinates made optional by this wrapper.
wrote: boolTrait Implementations§
Source§impl Debug for RefreshReport
impl Debug for RefreshReport
Auto Trait Implementations§
impl Freeze for RefreshReport
impl RefUnwindSafe for RefreshReport
impl Send for RefreshReport
impl Sync for RefreshReport
impl Unpin for RefreshReport
impl UnsafeUnpin for RefreshReport
impl UnwindSafe for RefreshReport
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