pub struct AnsibleVerifyTask {
pub host: String,
pub check_command: String,
}Expand description
Optional post-playbook verification.
Fields§
§host: String§check_command: StringTrait Implementations§
Source§impl DagTask for AnsibleVerifyTask
impl DagTask for AnsibleVerifyTask
Source§fn execute(&self, _ctx: &DagContext) -> TaskOutcome
fn execute(&self, _ctx: &DagContext) -> TaskOutcome
Execute this task.
Source§fn resource_tag(&self) -> Option<&str>
fn resource_tag(&self) -> Option<&str>
Optional resource tag for worker pool slot management.
Tasks with a resource tag require a matching slot in the pool.
Auto Trait Implementations§
impl Freeze for AnsibleVerifyTask
impl RefUnwindSafe for AnsibleVerifyTask
impl Send for AnsibleVerifyTask
impl Sync for AnsibleVerifyTask
impl Unpin for AnsibleVerifyTask
impl UnsafeUnpin for AnsibleVerifyTask
impl UnwindSafe for AnsibleVerifyTask
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