pub struct RunSnapshotDTO {
pub run_id: String,
pub run: RunState,
pub last_seq: u64,
pub nodes: Vec<NodeState>,
pub activities: Vec<ActivityState>,
pub loops: Option<BTreeMap<String, LoopSnapshotDTO>>,
pub dangling: DanglingSnapshot,
pub outputs: BTreeMap<String, WorkflowOutputRef>,
pub attempt_io: BTreeMap<String, AttemptIODTO>,
pub chat_binding: Option<RunChatBinding>,
pub updated_at: u64,
}Fields§
§run_id: String§run: RunState§last_seq: u64§nodes: Vec<NodeState>§activities: Vec<ActivityState>§loops: Option<BTreeMap<String, LoopSnapshotDTO>>§dangling: DanglingSnapshot§outputs: BTreeMap<String, WorkflowOutputRef>§attempt_io: BTreeMap<String, AttemptIODTO>§chat_binding: Option<RunChatBinding>§updated_at: u64Trait Implementations§
Source§impl Clone for RunSnapshotDTO
impl Clone for RunSnapshotDTO
Source§fn clone(&self) -> RunSnapshotDTO
fn clone(&self) -> RunSnapshotDTO
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 RunSnapshotDTO
impl Debug for RunSnapshotDTO
Source§impl<'de> Deserialize<'de> for RunSnapshotDTO
impl<'de> Deserialize<'de> for RunSnapshotDTO
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 RunSnapshotDTO
Source§impl PartialEq for RunSnapshotDTO
impl PartialEq for RunSnapshotDTO
Source§fn eq(&self, other: &RunSnapshotDTO) -> bool
fn eq(&self, other: &RunSnapshotDTO) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RunSnapshotDTO
impl Serialize for RunSnapshotDTO
impl StructuralPartialEq for RunSnapshotDTO
Auto Trait Implementations§
impl Freeze for RunSnapshotDTO
impl RefUnwindSafe for RunSnapshotDTO
impl Send for RunSnapshotDTO
impl Sync for RunSnapshotDTO
impl Unpin for RunSnapshotDTO
impl UnsafeUnpin for RunSnapshotDTO
impl UnwindSafe for RunSnapshotDTO
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