pub struct HumanApprovalStep {
pub step: String,
pub when: String,
pub rationale: String,
}Expand description
Human approval checkpoint.
Fields§
§step: StringWorkflow step name.
when: StringHuman-readable condition.
rationale: StringWhy approval is required.
Trait Implementations§
Source§impl Clone for HumanApprovalStep
impl Clone for HumanApprovalStep
Source§fn clone(&self) -> HumanApprovalStep
fn clone(&self) -> HumanApprovalStep
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 HumanApprovalStep
impl Debug for HumanApprovalStep
Source§impl Default for HumanApprovalStep
impl Default for HumanApprovalStep
Source§fn default() -> HumanApprovalStep
fn default() -> HumanApprovalStep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HumanApprovalStep
impl<'de> Deserialize<'de> for HumanApprovalStep
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 HumanApprovalStep
impl RefUnwindSafe for HumanApprovalStep
impl Send for HumanApprovalStep
impl Sync for HumanApprovalStep
impl Unpin for HumanApprovalStep
impl UnsafeUnpin for HumanApprovalStep
impl UnwindSafe for HumanApprovalStep
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