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.