pub struct TestTimingHistory {
pub generated_at: u64,
pub duration_ms: BTreeMap<String, u64>,
pub sample_count: BTreeMap<String, u32>,
pub last_seen: BTreeMap<String, u64>,
}Fields§
§generated_at: u64§duration_ms: BTreeMap<String, u64>§sample_count: BTreeMap<String, u32>§last_seen: BTreeMap<String, u64>Trait Implementations§
Source§impl Clone for TestTimingHistory
impl Clone for TestTimingHistory
Source§fn clone(&self) -> TestTimingHistory
fn clone(&self) -> TestTimingHistory
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 TestTimingHistory
impl Debug for TestTimingHistory
Source§impl Default for TestTimingHistory
impl Default for TestTimingHistory
Source§fn default() -> TestTimingHistory
fn default() -> TestTimingHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestTimingHistory
impl<'de> Deserialize<'de> for TestTimingHistory
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 TestTimingHistory
impl RefUnwindSafe for TestTimingHistory
impl Send for TestTimingHistory
impl Sync for TestTimingHistory
impl Unpin for TestTimingHistory
impl UnsafeUnpin for TestTimingHistory
impl UnwindSafe for TestTimingHistory
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