pub struct RunCheckpointRecord {
pub id: String,
pub ready_nodes: Vec<String>,
pub completed_nodes: Vec<String>,
pub last_stage_id: Option<String>,
pub persisted_at: String,
pub reason: String,
}Fields§
§id: String§ready_nodes: Vec<String>§completed_nodes: Vec<String>§last_stage_id: Option<String>§persisted_at: String§reason: StringTrait Implementations§
Source§impl Clone for RunCheckpointRecord
impl Clone for RunCheckpointRecord
Source§fn clone(&self) -> RunCheckpointRecord
fn clone(&self) -> RunCheckpointRecord
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 RunCheckpointRecord
impl Debug for RunCheckpointRecord
Source§impl Default for RunCheckpointRecord
impl Default for RunCheckpointRecord
Source§fn default() -> RunCheckpointRecord
fn default() -> RunCheckpointRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunCheckpointRecordwhere
RunCheckpointRecord: Default,
impl<'de> Deserialize<'de> for RunCheckpointRecordwhere
RunCheckpointRecord: Default,
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 RunCheckpointRecord
impl PartialEq for RunCheckpointRecord
Source§impl Serialize for RunCheckpointRecord
impl Serialize for RunCheckpointRecord
impl Eq for RunCheckpointRecord
impl StructuralPartialEq for RunCheckpointRecord
Auto Trait Implementations§
impl Freeze for RunCheckpointRecord
impl RefUnwindSafe for RunCheckpointRecord
impl Send for RunCheckpointRecord
impl Sync for RunCheckpointRecord
impl Unpin for RunCheckpointRecord
impl UnsafeUnpin for RunCheckpointRecord
impl UnwindSafe for RunCheckpointRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.