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