pub struct TransferStats {
pub total_files: usize,
pub successful_files: usize,
pub failed_files: usize,
pub skipped_files: usize,
pub total_bytes: u64,
pub transferred_bytes: u64,
pub average_speed: f64,
pub total_duration: Duration,
pub start_time: DateTime<Utc>,
pub end_time: DateTime<Utc>,
}Fields§
§total_files: usize§successful_files: usize§failed_files: usize§skipped_files: usize§total_bytes: u64§transferred_bytes: u64§average_speed: f64§total_duration: Duration§start_time: DateTime<Utc>§end_time: DateTime<Utc>Trait Implementations§
Source§impl Clone for TransferStats
impl Clone for TransferStats
Source§fn clone(&self) -> TransferStats
fn clone(&self) -> TransferStats
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 TransferStats
impl RefUnwindSafe for TransferStats
impl Send for TransferStats
impl Sync for TransferStats
impl Unpin for TransferStats
impl UnwindSafe for TransferStats
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