pub struct CacheProgress {
pub current: u32,
pub total: u32,
pub description: String,
}Expand description
Progress update sent during offline caching.
Fields§
§current: u32§total: u32§description: StringTrait Implementations§
Source§impl Clone for CacheProgress
impl Clone for CacheProgress
Source§fn clone(&self) -> CacheProgress
fn clone(&self) -> CacheProgress
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 CacheProgress
impl RefUnwindSafe for CacheProgress
impl Send for CacheProgress
impl Sync for CacheProgress
impl Unpin for CacheProgress
impl UnsafeUnpin for CacheProgress
impl UnwindSafe for CacheProgress
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