pub struct GlobalStat {
pub download_speed: u64,
pub upload_speed: u64,
pub num_active: i32,
pub num_waiting: i32,
pub num_stopped: i32,
pub num_stopped_total: i32,
}Fields§
§download_speed: u64§upload_speed: u64§num_active: i32§num_waiting: i32§num_stopped: i32§num_stopped_total: i32Trait Implementations§
Source§impl Clone for GlobalStat
impl Clone for GlobalStat
Source§fn clone(&self) -> GlobalStat
fn clone(&self) -> GlobalStat
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 moreSource§impl Debug for GlobalStat
impl Debug for GlobalStat
Source§impl<'de> Deserialize<'de> for GlobalStat
impl<'de> Deserialize<'de> for GlobalStat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GlobalStat
impl PartialEq for GlobalStat
Source§impl Serialize for GlobalStat
impl Serialize for GlobalStat
impl Eq for GlobalStat
impl StructuralPartialEq for GlobalStat
Auto Trait Implementations§
impl Freeze for GlobalStat
impl RefUnwindSafe for GlobalStat
impl Send for GlobalStat
impl Sync for GlobalStat
impl Unpin for GlobalStat
impl UnwindSafe for GlobalStat
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