pub struct FactoryPauseCheckpointRequest {
pub execution_token: String,
pub key: String,
pub run_id: String,
}Expand description
Parameters for an owned durable pause checkpoint.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§execution_token: StringOpaque token identifying the execution attempt that reached the checkpoint.
key: StringStable author-defined checkpoint key.
run_id: StringFactory run identifier.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FactoryPauseCheckpointRequest
impl<'de> Deserialize<'de> for FactoryPauseCheckpointRequest
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
Auto Trait Implementations§
impl Freeze for FactoryPauseCheckpointRequest
impl RefUnwindSafe for FactoryPauseCheckpointRequest
impl Send for FactoryPauseCheckpointRequest
impl Sync for FactoryPauseCheckpointRequest
impl Unpin for FactoryPauseCheckpointRequest
impl UnsafeUnpin for FactoryPauseCheckpointRequest
impl UnwindSafe for FactoryPauseCheckpointRequest
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