pub struct LoopSnapshotDTO {
pub loop_id: String,
pub status: LoopStatus,
pub iteration: u64,
pub max_iterations: u64,
pub iterations: Vec<LoopIterationState>,
pub output: Option<WorkflowOutputRef>,
pub error_code: Option<String>,
pub error_class: Option<String>,
}Fields§
§loop_id: String§status: LoopStatus§iteration: u64§max_iterations: u64§iterations: Vec<LoopIterationState>§output: Option<WorkflowOutputRef>§error_code: Option<String>§error_class: Option<String>Trait Implementations§
Source§impl Clone for LoopSnapshotDTO
impl Clone for LoopSnapshotDTO
Source§fn clone(&self) -> LoopSnapshotDTO
fn clone(&self) -> LoopSnapshotDTO
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 LoopSnapshotDTO
impl Debug for LoopSnapshotDTO
Source§impl<'de> Deserialize<'de> for LoopSnapshotDTO
impl<'de> Deserialize<'de> for LoopSnapshotDTO
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 LoopSnapshotDTO
Source§impl PartialEq for LoopSnapshotDTO
impl PartialEq for LoopSnapshotDTO
Source§fn eq(&self, other: &LoopSnapshotDTO) -> bool
fn eq(&self, other: &LoopSnapshotDTO) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LoopSnapshotDTO
impl Serialize for LoopSnapshotDTO
impl StructuralPartialEq for LoopSnapshotDTO
Auto Trait Implementations§
impl Freeze for LoopSnapshotDTO
impl RefUnwindSafe for LoopSnapshotDTO
impl Send for LoopSnapshotDTO
impl Sync for LoopSnapshotDTO
impl Unpin for LoopSnapshotDTO
impl UnsafeUnpin for LoopSnapshotDTO
impl UnwindSafe for LoopSnapshotDTO
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