pub enum OrchestrationOpsError {
CascadeOpsError(CascadeOpsError),
OrchestrationOpsError(OrchestratorOpsError),
}Expand description
OrchestrationOpsError
Variants§
CascadeOpsError(CascadeOpsError)
OrchestrationOpsError(OrchestratorOpsError)
Trait Implementations§
Source§impl Debug for OrchestrationOpsError
impl Debug for OrchestrationOpsError
Source§impl Display for OrchestrationOpsError
impl Display for OrchestrationOpsError
Source§impl Error for OrchestrationOpsError
impl Error for OrchestrationOpsError
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()
Source§impl From<CascadeOpsError> for OrchestrationOpsError
impl From<CascadeOpsError> for OrchestrationOpsError
Source§fn from(source: CascadeOpsError) -> Self
fn from(source: CascadeOpsError) -> Self
Converts to this type from the input type.
Source§impl From<OrchestrationOpsError> for Error
impl From<OrchestrationOpsError> for Error
Source§fn from(err: OrchestrationOpsError) -> Self
fn from(err: OrchestrationOpsError) -> Self
Converts to this type from the input type.
Source§impl From<OrchestrationOpsError> for OpsError
impl From<OrchestrationOpsError> for OpsError
Source§fn from(source: OrchestrationOpsError) -> Self
fn from(source: OrchestrationOpsError) -> Self
Converts to this type from the input type.
Source§impl From<OrchestratorOpsError> for OrchestrationOpsError
impl From<OrchestratorOpsError> for OrchestrationOpsError
Source§fn from(source: OrchestratorOpsError) -> Self
fn from(source: OrchestratorOpsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OrchestrationOpsError
impl RefUnwindSafe for OrchestrationOpsError
impl Send for OrchestrationOpsError
impl Sync for OrchestrationOpsError
impl Unpin for OrchestrationOpsError
impl UnwindSafe for OrchestrationOpsError
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