pub struct SeedStats {
pub total_uploaded: u64,
pub upload_speed: u64,
pub ratio: f64,
pub elapsed: Duration,
}Expand description
Seeding statistics for a completed download.
Fields§
§total_uploaded: u64Total bytes uploaded during seeding
upload_speed: u64Current upload speed in bytes/sec
ratio: f64Upload/download ratio
elapsed: DurationTime elapsed since seeding started
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SeedStats
impl RefUnwindSafe for SeedStats
impl Send for SeedStats
impl Sync for SeedStats
impl Unpin for SeedStats
impl UnsafeUnpin for SeedStats
impl UnwindSafe for SeedStats
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