pub struct AttemptRecord {
pub attempt: u32,
pub conclusion: Conclusion,
pub duration_ms: u64,
pub flake_matched: bool,
}Expand description
Operational record for one flake-retry attempt.
Fields§
§attempt: u32One-based attempt index.
conclusion: ConclusionAttempt conclusion.
duration_ms: u64Wall time in milliseconds.
flake_matched: boolWhether output matched a flake signature.
Trait Implementations§
Source§impl Clone for AttemptRecord
impl Clone for AttemptRecord
Source§fn clone(&self) -> AttemptRecord
fn clone(&self) -> AttemptRecord
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 AttemptRecord
impl Debug for AttemptRecord
Source§impl<'de> Deserialize<'de> for AttemptRecord
impl<'de> Deserialize<'de> for AttemptRecord
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 AttemptRecord
Source§impl PartialEq for AttemptRecord
impl PartialEq for AttemptRecord
Source§impl Serialize for AttemptRecord
impl Serialize for AttemptRecord
impl StructuralPartialEq for AttemptRecord
Auto Trait Implementations§
impl Freeze for AttemptRecord
impl RefUnwindSafe for AttemptRecord
impl Send for AttemptRecord
impl Sync for AttemptRecord
impl Unpin for AttemptRecord
impl UnsafeUnpin for AttemptRecord
impl UnwindSafe for AttemptRecord
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