pub struct StatsEntry {
pub id: StatsId,
pub kind: StatsKind,
pub timestamp: SystemTime,
pub values: BTreeMap<String, Value>,
}Fields§
§id: StatsId§kind: StatsKind§timestamp: SystemTime§values: BTreeMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for StatsEntry
impl Clone for StatsEntry
Source§fn clone(&self) -> StatsEntry
fn clone(&self) -> StatsEntry
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 StatsEntry
impl Debug for StatsEntry
Source§impl<'de> Deserialize<'de> for StatsEntry
impl<'de> Deserialize<'de> for StatsEntry
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 StatsEntry
impl RefUnwindSafe for StatsEntry
impl Send for StatsEntry
impl Sync for StatsEntry
impl Unpin for StatsEntry
impl UnwindSafe for StatsEntry
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