pub enum FileManager2Error {
FileManager2Error(Arc<FileManager2Error>),
FileOperationsError(FileOperationsError),
ArcFileOperationsError(Arc<FileOperationsError>),
IncorrectPageSize(u64, PathBuf),
IOError(Error),
PageDoesNotExist(PageOffset),
NeedDirectory(String),
TryFromIntError(TryFromIntError),
}
Variants§
FileManager2Error(Arc<FileManager2Error>)
FileOperationsError(FileOperationsError)
ArcFileOperationsError(Arc<FileOperationsError>)
IncorrectPageSize(u64, PathBuf)
IOError(Error)
PageDoesNotExist(PageOffset)
NeedDirectory(String)
TryFromIntError(TryFromIntError)
Trait Implementations§
Source§impl Debug for FileManager2Error
impl Debug for FileManager2Error
Source§impl Display for FileManager2Error
impl Display for FileManager2Error
Source§impl Error for FileManager2Error
impl Error for FileManager2Error
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<Arc<FileManager2Error>> for FileManager2Error
impl From<Arc<FileManager2Error>> for FileManager2Error
Source§fn from(source: Arc<FileManager2Error>) -> Self
fn from(source: Arc<FileManager2Error>) -> Self
Converts to this type from the input type.
Source§impl From<Arc<FileOperationsError>> for FileManager2Error
impl From<Arc<FileOperationsError>> for FileManager2Error
Source§fn from(source: Arc<FileOperationsError>) -> Self
fn from(source: Arc<FileOperationsError>) -> Self
Converts to this type from the input type.
Source§impl From<Error> for FileManager2Error
impl From<Error> for FileManager2Error
Source§impl From<FileManager2Error> for FeOphantError
impl From<FileManager2Error> for FeOphantError
Source§fn from(source: FileManager2Error) -> Self
fn from(source: FileManager2Error) -> Self
Converts to this type from the input type.
Source§impl From<FileManager2Error> for FreeSpaceManagerError
impl From<FileManager2Error> for FreeSpaceManagerError
Source§fn from(source: FileManager2Error) -> Self
fn from(source: FileManager2Error) -> Self
Converts to this type from the input type.
Source§impl From<FileManager2Error> for RowManagerError
impl From<FileManager2Error> for RowManagerError
Source§fn from(source: FileManager2Error) -> Self
fn from(source: FileManager2Error) -> Self
Converts to this type from the input type.
Source§impl From<FileOperationsError> for FileManager2Error
impl From<FileOperationsError> for FileManager2Error
Source§fn from(source: FileOperationsError) -> Self
fn from(source: FileOperationsError) -> Self
Converts to this type from the input type.
Source§impl From<TryFromIntError> for FileManager2Error
impl From<TryFromIntError> for FileManager2Error
Source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FileManager2Error
impl !RefUnwindSafe for FileManager2Error
impl Send for FileManager2Error
impl Sync for FileManager2Error
impl Unpin for FileManager2Error
impl !UnwindSafe for FileManager2Error
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