pub enum PubSubReceiveError {
Closed,
Lagged(u64),
}Expand description
Errors produced while receiving subscription fanout.
Variants§
Trait Implementations§
Source§impl Clone for PubSubReceiveError
impl Clone for PubSubReceiveError
Source§fn clone(&self) -> PubSubReceiveError
fn clone(&self) -> PubSubReceiveError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PubSubReceiveError
impl Debug for PubSubReceiveError
Source§impl PartialEq for PubSubReceiveError
impl PartialEq for PubSubReceiveError
Source§fn eq(&self, other: &PubSubReceiveError) -> bool
fn eq(&self, other: &PubSubReceiveError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PubSubReceiveError
impl StructuralPartialEq for PubSubReceiveError
Auto Trait Implementations§
impl Freeze for PubSubReceiveError
impl RefUnwindSafe for PubSubReceiveError
impl Send for PubSubReceiveError
impl Sync for PubSubReceiveError
impl Unpin for PubSubReceiveError
impl UnsafeUnpin for PubSubReceiveError
impl UnwindSafe for PubSubReceiveError
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