pub struct SequentialGraphStepState {
pub step_id: String,
pub status: GraphStepStatus,
pub attempts: u32,
pub started_at: Option<String>,
pub completed_at: Option<String>,
pub receipt_id: Option<String>,
pub outputs: Option<JsonObject>,
pub error: Option<String>,
}Fields§
§step_id: String§status: GraphStepStatus§attempts: u32§started_at: Option<String>§completed_at: Option<String>§receipt_id: Option<String>§outputs: Option<JsonObject>§error: Option<String>Trait Implementations§
Source§impl Clone for SequentialGraphStepState
impl Clone for SequentialGraphStepState
Source§fn clone(&self) -> SequentialGraphStepState
fn clone(&self) -> SequentialGraphStepState
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 SequentialGraphStepState
impl Debug for SequentialGraphStepState
Source§impl<'de> Deserialize<'de> for SequentialGraphStepState
impl<'de> Deserialize<'de> for SequentialGraphStepState
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 SequentialGraphStepState
impl PartialEq for SequentialGraphStepState
Source§fn eq(&self, other: &SequentialGraphStepState) -> bool
fn eq(&self, other: &SequentialGraphStepState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SequentialGraphStepState
impl Serialize for SequentialGraphStepState
impl StructuralPartialEq for SequentialGraphStepState
Auto Trait Implementations§
impl Freeze for SequentialGraphStepState
impl RefUnwindSafe for SequentialGraphStepState
impl Send for SequentialGraphStepState
impl Sync for SequentialGraphStepState
impl Unpin for SequentialGraphStepState
impl UnsafeUnpin for SequentialGraphStepState
impl UnwindSafe for SequentialGraphStepState
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