pub struct GraphStepLatency {
pub step: usize,
pub elapsed_ms: u64,
}Expand description
Latency for one graph superstep.
Derived by correlating step.started and step.completed observations with
the same step value.
Fields§
§step: usize1-based graph superstep.
elapsed_ms: u64Wall-clock elapsed time between step start and completion.
Trait Implementations§
Source§impl Clone for GraphStepLatency
impl Clone for GraphStepLatency
Source§fn clone(&self) -> GraphStepLatency
fn clone(&self) -> GraphStepLatency
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphStepLatency
impl Debug for GraphStepLatency
Source§impl<'de> Deserialize<'de> for GraphStepLatency
impl<'de> Deserialize<'de> for GraphStepLatency
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
impl Eq for GraphStepLatency
Source§impl PartialEq for GraphStepLatency
impl PartialEq for GraphStepLatency
Source§impl Serialize for GraphStepLatency
impl Serialize for GraphStepLatency
impl StructuralPartialEq for GraphStepLatency
Auto Trait Implementations§
impl Freeze for GraphStepLatency
impl RefUnwindSafe for GraphStepLatency
impl Send for GraphStepLatency
impl Sync for GraphStepLatency
impl Unpin for GraphStepLatency
impl UnsafeUnpin for GraphStepLatency
impl UnwindSafe for GraphStepLatency
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