pub struct CheckpointSaveOutcome {
pub checkpoint_ref: String,
pub covers_journal_seq: u64,
pub terminal_checkpoint: bool,
}Expand description
Holds checkpoint save outcome application-layer state or configuration. Use it with the documented coordinator methods; run, journal, event, provider, or port effects are called out on those methods rather than on construction.
Fields§
§checkpoint_ref: StringTyped checkpoint ref reference. Resolving or executing it is a separate policy-gated step.
covers_journal_seq: u64Covers journal seq used by this record or request.
terminal_checkpoint: boolWhether terminal checkpoint is enabled. Policy, validation, or routing code uses this flag to choose the explicit behavior.
Trait Implementations§
Source§impl Clone for CheckpointSaveOutcome
impl Clone for CheckpointSaveOutcome
Source§fn clone(&self) -> CheckpointSaveOutcome
fn clone(&self) -> CheckpointSaveOutcome
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 CheckpointSaveOutcome
impl Debug for CheckpointSaveOutcome
Source§impl<'de> Deserialize<'de> for CheckpointSaveOutcome
impl<'de> Deserialize<'de> for CheckpointSaveOutcome
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 CheckpointSaveOutcome
Source§impl PartialEq for CheckpointSaveOutcome
impl PartialEq for CheckpointSaveOutcome
Source§fn eq(&self, other: &CheckpointSaveOutcome) -> bool
fn eq(&self, other: &CheckpointSaveOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CheckpointSaveOutcome
impl Serialize for CheckpointSaveOutcome
impl StructuralPartialEq for CheckpointSaveOutcome
Auto Trait Implementations§
impl Freeze for CheckpointSaveOutcome
impl RefUnwindSafe for CheckpointSaveOutcome
impl Send for CheckpointSaveOutcome
impl Sync for CheckpointSaveOutcome
impl Unpin for CheckpointSaveOutcome
impl UnsafeUnpin for CheckpointSaveOutcome
impl UnwindSafe for CheckpointSaveOutcome
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