pub enum TableBuilderError {
    DirCreateError(Error),
    CreateWithoutWriteError,
    TableAlreadyExistsError,
}Expand description
Error trying to create a new table
Variants§
DirCreateError(Error)
Couldn’t create the directory for the table
CreateWithoutWriteError
Trying to create without a write policy
TableAlreadyExistsError
Trying to create a table that already exists
Trait Implementations§
Source§impl Debug for TableBuilderError
 
impl Debug for TableBuilderError
Source§impl Display for TableBuilderError
 
impl Display for TableBuilderError
Source§impl Error for TableBuilderError
 
impl Error for TableBuilderError
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 TableBuilderError
impl !RefUnwindSafe for TableBuilderError
impl Send for TableBuilderError
impl Sync for TableBuilderError
impl Unpin for TableBuilderError
impl !UnwindSafe for TableBuilderError
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