pub enum TableConfigError {
InvalidConfiguration(String),
FileNotFound(String),
ParseError(String),
}Expand description
Errors related to table configuration operations.
Variants§
InvalidConfiguration(String)
Invalid configuration.
FileNotFound(String)
Configuration file not found.
ParseError(String)
Error parsing configuration file.
Trait Implementations§
Source§impl Debug for TableConfigError
impl Debug for TableConfigError
Source§impl Display for TableConfigError
Display implementation for TableConfigError.
impl Display for TableConfigError
Display implementation for TableConfigError.
Source§impl Error for TableConfigError
Error trait implementation for TableConfigError.
impl Error for TableConfigError
Error trait implementation for TableConfigError.
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
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for TableConfigError
impl RefUnwindSafe for TableConfigError
impl Send for TableConfigError
impl Sync for TableConfigError
impl Unpin for TableConfigError
impl UnsafeUnpin for TableConfigError
impl UnwindSafe for TableConfigError
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