#[non_exhaustive]pub enum RegisterSinkError {
AlreadyActive,
}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.
AlreadyActive
Trait Implementations§
Source§impl Clone for RegisterSinkError
impl Clone for RegisterSinkError
Source§fn clone(&self) -> RegisterSinkError
fn clone(&self) -> RegisterSinkError
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 RegisterSinkError
impl Debug for RegisterSinkError
Source§impl PartialEq for RegisterSinkError
impl PartialEq for RegisterSinkError
impl Copy for RegisterSinkError
impl StructuralPartialEq for RegisterSinkError
Auto Trait Implementations§
impl Freeze for RegisterSinkError
impl RefUnwindSafe for RegisterSinkError
impl Send for RegisterSinkError
impl Sync for RegisterSinkError
impl Unpin for RegisterSinkError
impl UnwindSafe for RegisterSinkError
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