pub struct FlowStatusRetry {
pub fail_count: Option<i32>,
pub failed_jobs: Option<Vec<Uuid>>,
}
Fields§
§fail_count: Option<i32>
§failed_jobs: Option<Vec<Uuid>>
Implementations§
Source§impl FlowStatusRetry
impl FlowStatusRetry
pub fn new() -> FlowStatusRetry
Trait Implementations§
Source§impl Clone for FlowStatusRetry
impl Clone for FlowStatusRetry
Source§fn clone(&self) -> FlowStatusRetry
fn clone(&self) -> FlowStatusRetry
Returns a duplicate of the value. Read more
1.0.0 · 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 FlowStatusRetry
impl Debug for FlowStatusRetry
Source§impl Default for FlowStatusRetry
impl Default for FlowStatusRetry
Source§fn default() -> FlowStatusRetry
fn default() -> FlowStatusRetry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowStatusRetry
impl<'de> Deserialize<'de> for FlowStatusRetry
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
Source§impl PartialEq for FlowStatusRetry
impl PartialEq for FlowStatusRetry
Source§impl Serialize for FlowStatusRetry
impl Serialize for FlowStatusRetry
impl StructuralPartialEq for FlowStatusRetry
Auto Trait Implementations§
impl Freeze for FlowStatusRetry
impl RefUnwindSafe for FlowStatusRetry
impl Send for FlowStatusRetry
impl Sync for FlowStatusRetry
impl Unpin for FlowStatusRetry
impl UnwindSafe for FlowStatusRetry
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