pub enum ProvisionError {
KeychainUnavailable(String),
IdentityInit(String),
IdentityExists,
}Expand description
Errors from the provisioning workflow.
Variants§
The platform keychain could not be accessed.
IdentityInit(String)
The identity initialization step failed.
IdentityExists
An identity already exists and force was not set.
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
1.30.0 · 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 ProvisionError
impl RefUnwindSafe for ProvisionError
impl Send for ProvisionError
impl Sync for ProvisionError
impl Unpin for ProvisionError
impl UnsafeUnpin 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