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