#[non_exhaustive]pub enum InvalidConnectionName {
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 InvalidConnectionName
impl Clone for InvalidConnectionName
Source§fn clone(&self) -> InvalidConnectionName
fn clone(&self) -> InvalidConnectionName
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 InvalidConnectionName
impl Debug for InvalidConnectionName
Source§impl FromStr for InvalidConnectionName
impl FromStr for InvalidConnectionName
Source§impl Hash for InvalidConnectionName
impl Hash for InvalidConnectionName
Source§impl PartialEq for InvalidConnectionName
impl PartialEq for InvalidConnectionName
impl Eq for InvalidConnectionName
impl StructuralPartialEq for InvalidConnectionName
Auto Trait Implementations§
impl Freeze for InvalidConnectionName
impl RefUnwindSafe for InvalidConnectionName
impl Send for InvalidConnectionName
impl Sync for InvalidConnectionName
impl Unpin for InvalidConnectionName
impl UnwindSafe for InvalidConnectionName
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