pub struct PSIInfoLine {
pub share: String,
pub avg10: f64,
pub avg60: f64,
pub avg300: f64,
pub total: u64,
}
Fields§
§avg10: f64
§avg60: f64
§avg300: f64
§total: u64
Trait Implementations§
Source§impl Clone for PSIInfoLine
impl Clone for PSIInfoLine
Source§fn clone(&self) -> PSIInfoLine
fn clone(&self) -> PSIInfoLine
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 PSIInfoLine
impl Debug for PSIInfoLine
Source§impl<'de> Deserialize<'de> for PSIInfoLine
impl<'de> Deserialize<'de> for PSIInfoLine
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 PSIInfoLine
impl PartialEq for PSIInfoLine
Source§impl Serialize for PSIInfoLine
impl Serialize for PSIInfoLine
impl StructuralPartialEq for PSIInfoLine
Auto Trait Implementations§
impl Freeze for PSIInfoLine
impl RefUnwindSafe for PSIInfoLine
impl Send for PSIInfoLine
impl Sync for PSIInfoLine
impl Unpin for PSIInfoLine
impl UnwindSafe for PSIInfoLine
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