pub enum ProvisionError {
Backend(String),
NotConfigured,
Conflict(String),
}Expand description
A provisioning failure.
Variants§
Backend(String)
The cloud API (or credential) failed.
NotConfigured
The operator’s verify-only tier found no configured pipeline.
Conflict(String)
A conflict boatramp must not clobber (e.g. an S3 bucket that already has a different owner’s notification config).
Trait Implementations§
Source§impl Clone for ProvisionError
impl Clone for ProvisionError
Source§fn clone(&self) -> ProvisionError
fn clone(&self) -> ProvisionError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§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