pub struct FairnessLogEntry {
pub timestamp: Instant,
pub event_type: EventType,
pub duration: Duration,
}Expand description
Fairness log entry for telemetry.
Fields§
§timestamp: InstantTimestamp of the entry.
event_type: EventTypeEvent type processed.
duration: DurationDuration of processing.
Trait Implementations§
Source§impl Clone for FairnessLogEntry
impl Clone for FairnessLogEntry
Source§fn clone(&self) -> FairnessLogEntry
fn clone(&self) -> FairnessLogEntry
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 moreAuto Trait Implementations§
impl Freeze for FairnessLogEntry
impl RefUnwindSafe for FairnessLogEntry
impl Send for FairnessLogEntry
impl Sync for FairnessLogEntry
impl Unpin for FairnessLogEntry
impl UnwindSafe for FairnessLogEntry
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