pub struct WorkflowCheckpointSummary {
pub checkpoint_id: String,
pub timestamp_millis: u64,
pub iteration_count: usize,
pub targets: Vec<String>,
pub executor_ids: Vec<String>,
pub status: String,
pub pending_request_ids: Vec<String>,
}Expand description
A human-readable summary of a checkpoint. Rust analogue of
WorkflowCheckpointSummary.
Fields§
§checkpoint_id: String§timestamp_millis: u64§iteration_count: usize§targets: Vec<String>Distinct message targets in transit, sorted.
executor_ids: Vec<String>Executor ids with persisted state, sorted.
status: StringA coarse status string: idle, awaiting request response, or
awaiting next superstep.
pending_request_ids: Vec<String>Ids of requests outstanding at snapshot time.
Trait Implementations§
Source§impl Clone for WorkflowCheckpointSummary
impl Clone for WorkflowCheckpointSummary
Source§fn clone(&self) -> WorkflowCheckpointSummary
fn clone(&self) -> WorkflowCheckpointSummary
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 WorkflowCheckpointSummary
impl Debug for WorkflowCheckpointSummary
Source§impl<'de> Deserialize<'de> for WorkflowCheckpointSummary
impl<'de> Deserialize<'de> for WorkflowCheckpointSummary
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WorkflowCheckpointSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WorkflowCheckpointSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for WorkflowCheckpointSummary
impl Serialize for WorkflowCheckpointSummary
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for WorkflowCheckpointSummary
impl RefUnwindSafe for WorkflowCheckpointSummary
impl Send for WorkflowCheckpointSummary
impl Sync for WorkflowCheckpointSummary
impl Unpin for WorkflowCheckpointSummary
impl UnsafeUnpin for WorkflowCheckpointSummary
impl UnwindSafe for WorkflowCheckpointSummary
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