Enum jj_lib::stacked_table::TableStoreError
source · pub enum TableStoreError {
IoError(Error),
PersistError(PersistError),
}
Variants§
IoError(Error)
PersistError(PersistError)
Trait Implementations§
source§impl Debug for TableStoreError
impl Debug for TableStoreError
source§impl Display for TableStoreError
impl Display for TableStoreError
source§impl Error for TableStoreError
impl Error for TableStoreError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 TableStoreError
impl From<Error> for TableStoreError
source§impl From<PersistError> for TableStoreError
impl From<PersistError> for TableStoreError
source§fn from(source: PersistError) -> Self
fn from(source: PersistError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for TableStoreError
impl Send for TableStoreError
impl Sync for TableStoreError
impl Unpin for TableStoreError
impl !UnwindSafe for TableStoreError
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