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