pub enum SubscribeErrorKind {
InvalidSubject,
InvalidQueueName,
Other,
}Variants§
InvalidSubject
The subject is invalid (empty, contains whitespace, or has malformed dot structure).
InvalidQueueName
The queue group name is invalid (empty or contains whitespace).
Other
Other errors, client/io related.
Trait Implementations§
Source§impl Clone for SubscribeErrorKind
impl Clone for SubscribeErrorKind
Source§fn clone(&self) -> SubscribeErrorKind
fn clone(&self) -> SubscribeErrorKind
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 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 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 UnsafeUnpin 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