pub struct InFlightSnapshot {
pub gauge: String,
pub at_unix_ms: u64,
pub count: u64,
}Expand description
Point-in-time in-flight gauge reading.
Fields§
§gauge: StringGauge name.
at_unix_ms: u64Timestamp (milliseconds since epoch UTC).
count: u64Number of in-flight units.
Trait Implementations§
Source§impl Clone for InFlightSnapshot
impl Clone for InFlightSnapshot
Source§fn clone(&self) -> InFlightSnapshot
fn clone(&self) -> InFlightSnapshot
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 InFlightSnapshot
impl Debug for InFlightSnapshot
Source§impl<'de> Deserialize<'de> for InFlightSnapshot
impl<'de> Deserialize<'de> for InFlightSnapshot
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 InFlightSnapshot
impl PartialEq for InFlightSnapshot
Source§impl Serialize for InFlightSnapshot
impl Serialize for InFlightSnapshot
impl Eq for InFlightSnapshot
impl StructuralPartialEq for InFlightSnapshot
Auto Trait Implementations§
impl Freeze for InFlightSnapshot
impl RefUnwindSafe for InFlightSnapshot
impl Send for InFlightSnapshot
impl Sync for InFlightSnapshot
impl Unpin for InFlightSnapshot
impl UnsafeUnpin for InFlightSnapshot
impl UnwindSafe for InFlightSnapshot
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