pub struct RunFailureRow {
pub failure_id: String,
pub run_id: String,
pub class: String,
pub message: String,
pub phase: String,
pub retriable: bool,
pub retry_count: u32,
pub occurred_at: String,
}Fields§
§failure_id: String§run_id: String§class: String§message: String§phase: String§retriable: bool§retry_count: u32§occurred_at: StringTrait Implementations§
Source§impl Clone for RunFailureRow
impl Clone for RunFailureRow
Source§fn clone(&self) -> RunFailureRow
fn clone(&self) -> RunFailureRow
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 RunFailureRow
impl RefUnwindSafe for RunFailureRow
impl Send for RunFailureRow
impl Sync for RunFailureRow
impl Unpin for RunFailureRow
impl UnsafeUnpin for RunFailureRow
impl UnwindSafe for RunFailureRow
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