pub struct StatReport {
pub interval: String,
pub entries: Vec<StatEntry>,
}Expand description
Statistical report (from Legacy API stat/report/*).
Fields§
§interval: String§entries: Vec<StatEntry>Trait Implementations§
Source§impl Clone for StatReport
impl Clone for StatReport
Source§fn clone(&self) -> StatReport
fn clone(&self) -> StatReport
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 StatReport
impl Debug for StatReport
Source§impl<'de> Deserialize<'de> for StatReport
impl<'de> Deserialize<'de> for StatReport
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
Auto Trait Implementations§
impl Freeze for StatReport
impl RefUnwindSafe for StatReport
impl Send for StatReport
impl Sync for StatReport
impl Unpin for StatReport
impl UnsafeUnpin for StatReport
impl UnwindSafe for StatReport
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