pub enum ServiceInstallationError {
InvalidContract(String),
StaleState,
MissingAuthority(String),
UnsafeOperationIdentity,
Io(Error),
Json(Error),
}Variants§
InvalidContract(String)
StaleState
MissingAuthority(String)
UnsafeOperationIdentity
Io(Error)
Json(Error)
Trait Implementations§
Source§impl Debug for ServiceInstallationError
impl Debug for ServiceInstallationError
Source§impl Display for ServiceInstallationError
impl Display for ServiceInstallationError
Source§impl Error for ServiceInstallationError
impl Error for ServiceInstallationError
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<Error> for ServiceInstallationError
impl From<Error> for ServiceInstallationError
Source§impl From<Error> for ServiceInstallationError
impl From<Error> for ServiceInstallationError
Source§impl From<ServiceInstallationError> for ModuleChangePlannerError
impl From<ServiceInstallationError> for ModuleChangePlannerError
Source§fn from(source: ServiceInstallationError) -> Self
fn from(source: ServiceInstallationError) -> Self
Converts to this type from the input type.
Source§impl From<ServiceInstallationError> for WorkspaceModuleManagementError
impl From<ServiceInstallationError> for WorkspaceModuleManagementError
Source§fn from(source: ServiceInstallationError) -> Self
fn from(source: ServiceInstallationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ServiceInstallationError
impl !UnwindSafe for ServiceInstallationError
impl Freeze for ServiceInstallationError
impl Send for ServiceInstallationError
impl Sync for ServiceInstallationError
impl Unpin for ServiceInstallationError
impl UnsafeUnpin for ServiceInstallationError
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