#[non_exhaustive]pub enum InvalidCatalogName {
Other(String),
}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.
Implementations§
Trait Implementations§
Source§impl Clone for InvalidCatalogName
impl Clone for InvalidCatalogName
Source§fn clone(&self) -> InvalidCatalogName
fn clone(&self) -> InvalidCatalogName
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InvalidCatalogName
impl Debug for InvalidCatalogName
Source§impl FromStr for InvalidCatalogName
impl FromStr for InvalidCatalogName
Source§impl Hash for InvalidCatalogName
impl Hash for InvalidCatalogName
Source§impl PartialEq for InvalidCatalogName
impl PartialEq for InvalidCatalogName
impl Eq for InvalidCatalogName
impl StructuralPartialEq for InvalidCatalogName
Auto Trait Implementations§
impl Freeze for InvalidCatalogName
impl RefUnwindSafe for InvalidCatalogName
impl Send for InvalidCatalogName
impl Sync for InvalidCatalogName
impl Unpin for InvalidCatalogName
impl UnwindSafe for InvalidCatalogName
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