pub struct WaitState {
pub wait_kind: String,
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<String>,
pub resolution: Option<WaitResolutionState>,
}Fields§
§wait_kind: String§deadline_at: Option<u64>§prompt: Option<String>§prompt_ref: Option<WorkflowOutputRef>§prompt_preview: Option<String>§approvers: Option<Vec<String>>§on_timeout: Option<String>§resolution: Option<WaitResolutionState>Trait Implementations§
Source§impl<'de> Deserialize<'de> for WaitState
impl<'de> Deserialize<'de> for WaitState
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 WaitState
impl StructuralPartialEq for WaitState
Auto Trait Implementations§
impl Freeze for WaitState
impl RefUnwindSafe for WaitState
impl Send for WaitState
impl Sync for WaitState
impl Unpin for WaitState
impl UnsafeUnpin for WaitState
impl UnwindSafe for WaitState
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