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