pub struct NodeTime {
pub node_name: String,
pub node_type: String,
pub min_ms: u64,
pub avg_ms: u64,
pub max_ms: u64,
pub expected_executions: u32,
pub is_critical: bool,
}Expand description
Time estimate for a single node
Fields§
§node_name: StringNode name
node_type: StringNode type
min_ms: u64Minimum execution time (ms)
avg_ms: u64Average execution time (ms)
max_ms: u64Maximum execution time (ms)
expected_executions: u32Number of expected executions
is_critical: boolWhether this node is on the critical path
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NodeTime
impl<'de> Deserialize<'de> for NodeTime
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 NodeTime
impl RefUnwindSafe for NodeTime
impl Send for NodeTime
impl Sync for NodeTime
impl Unpin for NodeTime
impl UnwindSafe for NodeTime
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