pub enum AnsibleError {
EnvBuildFailed(String),
PlaybookFailed {
host: String,
message: String,
},
VerifyFailed {
host: String,
message: String,
},
InventoryFailed(String),
NoConfig,
Nix(NixError),
Dag(String),
General(String),
}Variants§
EnvBuildFailed(String)
PlaybookFailed
VerifyFailed
InventoryFailed(String)
NoConfig
Nix(NixError)
Dag(String)
General(String)
Trait Implementations§
Source§impl Debug for AnsibleError
impl Debug for AnsibleError
Source§impl Display for AnsibleError
impl Display for AnsibleError
Source§impl Error for AnsibleError
impl Error for AnsibleError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AnsibleError
impl !RefUnwindSafe for AnsibleError
impl Send for AnsibleError
impl Sync for AnsibleError
impl Unpin for AnsibleError
impl UnsafeUnpin for AnsibleError
impl !UnwindSafe for AnsibleError
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