pub enum ReceiveRejectReason {
ConsumerGone,
InvalidEnvelope,
NotSupported,
Unknown,
}Expand description
P2P endpoint - for advanced use, prefer Node for most applications Reasons the remote receive pipeline rejected an ACK-requested payload.
Variants§
ConsumerGone
The local consumer side of recv() is no longer available.
InvalidEnvelope
The payload format was invalid for ACK-v1.
NotSupported
The request is not supported on this connection.
Unknown
The payload was rejected for an unspecified reason.
Trait Implementations§
Source§impl Clone for ReceiveRejectReason
impl Clone for ReceiveRejectReason
Source§fn clone(&self) -> ReceiveRejectReason
fn clone(&self) -> ReceiveRejectReason
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 ReceiveRejectReason
impl Debug for ReceiveRejectReason
Source§impl Display for ReceiveRejectReason
impl Display for ReceiveRejectReason
Source§impl Hash for ReceiveRejectReason
impl Hash for ReceiveRejectReason
Source§impl PartialEq for ReceiveRejectReason
impl PartialEq for ReceiveRejectReason
impl Copy for ReceiveRejectReason
impl Eq for ReceiveRejectReason
impl StructuralPartialEq for ReceiveRejectReason
Auto Trait Implementations§
impl Freeze for ReceiveRejectReason
impl RefUnwindSafe for ReceiveRejectReason
impl Send for ReceiveRejectReason
impl Sync for ReceiveRejectReason
impl Unpin for ReceiveRejectReason
impl UnsafeUnpin for ReceiveRejectReason
impl UnwindSafe for ReceiveRejectReason
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.