pub struct SyncProgress {
pub current_file: String,
pub current_file_size: u64,
pub transferred: u64,
pub total: u64,
pub percentage: f64,
pub speed: f64,
}Fields§
§current_file: String§current_file_size: u64§transferred: u64§total: u64§percentage: f64§speed: f64Auto Trait Implementations§
impl Freeze for SyncProgress
impl RefUnwindSafe for SyncProgress
impl Send for SyncProgress
impl Sync for SyncProgress
impl Unpin for SyncProgress
impl UnwindSafe for SyncProgress
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