pub enum LsmError {
Show 41 variants
LibBug(String),
PluginBug(String),
TimeOut(String),
DaemonNotRunning(String),
PermissionDenied(String),
NameConflict(String),
ExistsInitiator(String),
InvalidArgument(String),
NoStateChange(String),
NetworkConRefused(String),
NetworkHostDown(String),
NetworkError(String),
NoMemory(String),
NoSupport(String),
IsMasked(String),
HasChildDependency(String),
NotFoundAccessGroup(String),
NotFoundFs(String),
NotFoundJob(String),
NotFoundPool(String),
NotFoundFsSnapshot(String),
NotFoundVolume(String),
NotFoundNfsExport(String),
NotFoundSystem(String),
NotFoundDisk(String),
NotLicensed(String),
NoSupportOnlineChange(String),
NoSupportOfflineChange(String),
PluginAuthFailed(String),
PluginIpcFail(String),
PluginSocketPermission(String),
PluginNotExist(String),
NoEnoughSpace(String),
TransportCommunication(String),
TransportSerialization(String),
TransportInvalidArg(String),
LastInitInAccessGroup(String),
UnSupportedSearchKey(String),
EmptyAccessGroup(String),
PoolNotReady(String),
DiskNotFree(String),
}
Variants§
LibBug(String)
PluginBug(String)
TimeOut(String)
DaemonNotRunning(String)
PermissionDenied(String)
NameConflict(String)
ExistsInitiator(String)
InvalidArgument(String)
NoStateChange(String)
NetworkConRefused(String)
NetworkHostDown(String)
NetworkError(String)
NoMemory(String)
NoSupport(String)
IsMasked(String)
HasChildDependency(String)
NotFoundAccessGroup(String)
NotFoundFs(String)
NotFoundJob(String)
NotFoundPool(String)
NotFoundFsSnapshot(String)
NotFoundVolume(String)
NotFoundNfsExport(String)
NotFoundSystem(String)
NotFoundDisk(String)
NotLicensed(String)
NoSupportOnlineChange(String)
NoSupportOfflineChange(String)
PluginAuthFailed(String)
PluginIpcFail(String)
PluginSocketPermission(String)
PluginNotExist(String)
NoEnoughSpace(String)
TransportCommunication(String)
TransportSerialization(String)
TransportInvalidArg(String)
LastInitInAccessGroup(String)
UnSupportedSearchKey(String)
EmptyAccessGroup(String)
PoolNotReady(String)
DiskNotFree(String)
Trait Implementations§
source§impl Error for LsmError
impl Error for LsmError
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
source§impl From<FromUtf8Error> for LsmError
impl From<FromUtf8Error> for LsmError
source§fn from(e: FromUtf8Error) -> Self
fn from(e: FromUtf8Error) -> Self
Converts to this type from the input type.
source§impl From<ParseIntError> for LsmError
impl From<ParseIntError> for LsmError
source§fn from(e: ParseIntError) -> Self
fn from(e: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LsmError
impl RefUnwindSafe for LsmError
impl Send for LsmError
impl Sync for LsmError
impl Unpin for LsmError
impl UnwindSafe for LsmError
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