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