pub struct WorkflowResumeRequest {
pub limits: Option<WorkflowRunLimits>,
pub log_phase_names: Option<bool>,
pub notify_on_complete: Option<bool>,
pub run_id: String,
}Expand description
Parameters for resuming a workflow run from its persisted identity.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§limits: Option<WorkflowRunLimits>Optional per-invocation resource ceiling overrides.
log_phase_names: Option<bool>Whether to emit workflow phase names to the session transcript.
notify_on_complete: Option<bool>Whether to notify the originating session when the workflow completes.
run_id: StringWorkflow run identifier.
Trait Implementations§
Source§impl Clone for WorkflowResumeRequest
impl Clone for WorkflowResumeRequest
Source§impl Debug for WorkflowResumeRequest
impl Debug for WorkflowResumeRequest
Source§impl Default for WorkflowResumeRequest
impl Default for WorkflowResumeRequest
Source§impl<'de> Deserialize<'de> for WorkflowResumeRequest
impl<'de> Deserialize<'de> for WorkflowResumeRequest
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 WorkflowResumeRequest
impl RefUnwindSafe for WorkflowResumeRequest
impl Send for WorkflowResumeRequest
impl Sync for WorkflowResumeRequest
impl Unpin for WorkflowResumeRequest
impl UnsafeUnpin for WorkflowResumeRequest
impl UnwindSafe for WorkflowResumeRequest
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