#[non_exhaustive]pub enum InvalidTableId {
TooShort,
InvalidCharacters,
MissingSeparator,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Debug for InvalidTableId
impl Debug for InvalidTableId
source§impl Display for InvalidTableId
impl Display for InvalidTableId
source§impl Error for InvalidTableId
impl Error for InvalidTableId
1.30.0 · 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<InvalidTableId> for Error
impl From<InvalidTableId> for Error
source§fn from(error: InvalidTableId) -> Self
fn from(error: InvalidTableId) -> Self
Converts to this type from the input type.
source§impl PartialEq for InvalidTableId
impl PartialEq for InvalidTableId
source§fn eq(&self, other: &InvalidTableId) -> bool
fn eq(&self, other: &InvalidTableId) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for InvalidTableId
impl StructuralPartialEq for InvalidTableId
Auto Trait Implementations§
impl RefUnwindSafe for InvalidTableId
impl Send for InvalidTableId
impl Sync for InvalidTableId
impl Unpin for InvalidTableId
impl UnwindSafe for InvalidTableId
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