pub enum UnsubscribeErrorKind {
DetachedClient,
InvalidTopicFilter,
}
Expand description
An enumeration of categories of UnsubscribeError
Variants§
DetachedClient
Client is detached from connection/event loop. Cannot send requests.
InvalidTopicFilter
Invalid topic filter provided
Trait Implementations§
Source§impl Clone for UnsubscribeErrorKind
impl Clone for UnsubscribeErrorKind
Source§fn clone(&self) -> UnsubscribeErrorKind
fn clone(&self) -> UnsubscribeErrorKind
Returns a copy 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 UnsubscribeErrorKind
impl Debug for UnsubscribeErrorKind
Source§impl Display for UnsubscribeErrorKind
impl Display for UnsubscribeErrorKind
Source§impl PartialEq for UnsubscribeErrorKind
impl PartialEq for UnsubscribeErrorKind
impl Copy for UnsubscribeErrorKind
impl Eq for UnsubscribeErrorKind
impl StructuralPartialEq for UnsubscribeErrorKind
Auto Trait Implementations§
impl Freeze for UnsubscribeErrorKind
impl RefUnwindSafe for UnsubscribeErrorKind
impl Send for UnsubscribeErrorKind
impl Sync for UnsubscribeErrorKind
impl Unpin for UnsubscribeErrorKind
impl UnwindSafe for UnsubscribeErrorKind
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