pub struct WorkflowInterruptRequest {
pub interrupt_id: WorkflowInterruptId,
pub prompt: String,
pub proposal: Value,
}Expand description
Persisted request presented to a human reviewer.
Fields§
§interrupt_id: WorkflowInterruptIdStable identity used by the decision command.
prompt: StringSafe application-authored review instruction.
proposal: ValueCanonical value proposed by the preceding workflow node.
Implementations§
Source§impl WorkflowInterruptRequest
impl WorkflowInterruptRequest
Sourcepub fn new(
prompt: impl Into<String>,
proposal: Value,
) -> Result<Self, WorkflowWaitError>
pub fn new( prompt: impl Into<String>, proposal: Value, ) -> Result<Self, WorkflowWaitError>
Creates a new durable review request.
§Errors
Rejects blank or oversized prompts and proposals above 1 MiB.
Sourcepub fn with_id(
interrupt_id: WorkflowInterruptId,
prompt: impl Into<String>,
proposal: Value,
) -> Result<Self, WorkflowWaitError>
pub fn with_id( interrupt_id: WorkflowInterruptId, prompt: impl Into<String>, proposal: Value, ) -> Result<Self, WorkflowWaitError>
Reconstructs a request with an existing durable identity.
§Errors
Rejects blank or oversized prompts and proposals above 1 MiB.
Trait Implementations§
Source§impl Clone for WorkflowInterruptRequest
impl Clone for WorkflowInterruptRequest
Source§fn clone(&self) -> WorkflowInterruptRequest
fn clone(&self) -> WorkflowInterruptRequest
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 WorkflowInterruptRequest
impl Debug for WorkflowInterruptRequest
Source§impl<'de> Deserialize<'de> for WorkflowInterruptRequest
impl<'de> Deserialize<'de> for WorkflowInterruptRequest
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 WorkflowInterruptRequest
Source§impl PartialEq for WorkflowInterruptRequest
impl PartialEq for WorkflowInterruptRequest
Source§impl Serialize for WorkflowInterruptRequest
impl Serialize for WorkflowInterruptRequest
impl StructuralPartialEq for WorkflowInterruptRequest
Auto Trait Implementations§
impl Freeze for WorkflowInterruptRequest
impl RefUnwindSafe for WorkflowInterruptRequest
impl Send for WorkflowInterruptRequest
impl Sync for WorkflowInterruptRequest
impl Unpin for WorkflowInterruptRequest
impl UnsafeUnpin for WorkflowInterruptRequest
impl UnwindSafe for WorkflowInterruptRequest
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.