pub enum BroadcastStreamRecvError {
    Lagged(u64),
}Available on crate feature 
sync only.Expand description
An error returned from the inner stream of a BroadcastStream.
Variants§
Lagged(u64)
The receiver lagged too far behind. Attempting to receive again will return the oldest message still retained by the channel.
Includes the number of skipped messages.
Trait Implementations§
source§impl Clone for BroadcastStreamRecvError
 
impl Clone for BroadcastStreamRecvError
source§fn clone(&self) -> BroadcastStreamRecvError
 
fn clone(&self) -> BroadcastStreamRecvError
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 BroadcastStreamRecvError
 
impl Debug for BroadcastStreamRecvError
source§impl Display for BroadcastStreamRecvError
 
impl Display for BroadcastStreamRecvError
source§impl Error for BroadcastStreamRecvError
 
impl Error for BroadcastStreamRecvError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<BroadcastStreamRecvError> for BroadcastStreamRecvError
 
impl PartialEq<BroadcastStreamRecvError> for BroadcastStreamRecvError
source§fn eq(&self, other: &BroadcastStreamRecvError) -> bool
 
fn eq(&self, other: &BroadcastStreamRecvError) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.