pub enum RecvError {
Closed,
Lagged(u64),
}
There are no more active senders implying no further messages will ever
be sent.
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.
Formats the value using the given formatter. Read more
Formats the value using the given formatter. Read more
The lower-level source of this error, if any. Read more
🔬 This is a nightly-only experimental API. (backtrace
)
Returns a stack backtrace, if available, of where this error occurred. Read more
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.