pub struct FlowAttemptRecordData {
pub flow_name: String,
pub attempts: Vec<FlowAttemptData>,
}Expand description
v1.0.15 §6 — recorded flow with its attempt list.
Fields§
§flow_name: StringFlow name (yaml basename or explicit id).
attempts: Vec<FlowAttemptData>Ordered attempts, first try first.
Trait Implementations§
Source§impl Clone for FlowAttemptRecordData
impl Clone for FlowAttemptRecordData
Source§fn clone(&self) -> FlowAttemptRecordData
fn clone(&self) -> FlowAttemptRecordData
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 FlowAttemptRecordData
impl RefUnwindSafe for FlowAttemptRecordData
impl Send for FlowAttemptRecordData
impl Sync for FlowAttemptRecordData
impl Unpin for FlowAttemptRecordData
impl UnsafeUnpin for FlowAttemptRecordData
impl UnwindSafe for FlowAttemptRecordData
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