pub enum AckErrorKind {
DetachedClient,
AlreadyAcked,
}
Expand description
An enumeration of categories of AckError
Variants§
DetachedClient
Client is detached from connection/event loop. Cannot send requests.
AlreadyAcked
The publish has already been sufficiently acknowledged
Trait Implementations§
Source§impl Clone for AckErrorKind
impl Clone for AckErrorKind
Source§fn clone(&self) -> AckErrorKind
fn clone(&self) -> AckErrorKind
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 AckErrorKind
impl Debug for AckErrorKind
Source§impl Display for AckErrorKind
impl Display for AckErrorKind
Source§impl PartialEq for AckErrorKind
impl PartialEq for AckErrorKind
impl Copy for AckErrorKind
impl Eq for AckErrorKind
impl StructuralPartialEq for AckErrorKind
Auto Trait Implementations§
impl Freeze for AckErrorKind
impl RefUnwindSafe for AckErrorKind
impl Send for AckErrorKind
impl Sync for AckErrorKind
impl Unpin for AckErrorKind
impl UnwindSafe for AckErrorKind
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