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