pub struct CreateWaitInput {
pub activity_id: String,
pub attempt_id: String,
pub node_id: String,
pub wait_kind: WaitKind,
pub deadline_at: Option<u64>,
pub prompt: Option<String>,
pub prompt_ref: Option<WorkflowOutputRef>,
pub prompt_preview: Option<String>,
pub approvers: Option<Vec<String>>,
pub on_timeout: Option<WaitOnTimeout>,
}Fields§
§activity_id: String§attempt_id: String§node_id: String§wait_kind: WaitKind§deadline_at: Option<u64>§prompt: Option<String>§prompt_ref: Option<WorkflowOutputRef>§prompt_preview: Option<String>§approvers: Option<Vec<String>>§on_timeout: Option<WaitOnTimeout>Trait Implementations§
Source§impl Clone for CreateWaitInput
impl Clone for CreateWaitInput
Source§fn clone(&self) -> CreateWaitInput
fn clone(&self) -> CreateWaitInput
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 moreAuto Trait Implementations§
impl Freeze for CreateWaitInput
impl RefUnwindSafe for CreateWaitInput
impl Send for CreateWaitInput
impl Sync for CreateWaitInput
impl Unpin for CreateWaitInput
impl UnsafeUnpin for CreateWaitInput
impl UnwindSafe for CreateWaitInput
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