pub struct FlowAttemptData {
pub attempt_index: u32,
pub status: String,
pub error_class: Option<String>,
pub ips_generated: Option<String>,
pub wall_ms: u64,
}Expand description
v1.0.15 §6 — public accessor with just the fields needed by callers.
Mirrors [smix_runner_wire::FlowAttempt] shape.
Fields§
§attempt_index: u32Zero-based retry index.
status: StringOverall outcome (“ok” / “timeout” / “error” / “crashed”).
error_class: Option<String>Free-form error class code (Some on non-ok).
ips_generated: Option<String>.ips filename that appeared during this attempt, when detected.
wall_ms: u64Wall-clock milliseconds.
Trait Implementations§
Source§impl Clone for FlowAttemptData
impl Clone for FlowAttemptData
Source§fn clone(&self) -> FlowAttemptData
fn clone(&self) -> FlowAttemptData
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 moreAuto Trait Implementations§
impl Freeze for FlowAttemptData
impl RefUnwindSafe for FlowAttemptData
impl Send for FlowAttemptData
impl Sync for FlowAttemptData
impl Unpin for FlowAttemptData
impl UnsafeUnpin for FlowAttemptData
impl UnwindSafe for FlowAttemptData
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