Enum async_nats::RequestErrorKind
source · pub enum RequestErrorKind {
TimedOut,
NoResponders,
Other,
}
Variants§
TimedOut
There are services listening on requested subject, but they didn’t respond in time.
NoResponders
No one is listening on request subject.
Other
Other errors, client/io related.
Trait Implementations§
source§impl Clone for RequestErrorKind
impl Clone for RequestErrorKind
source§fn clone(&self) -> RequestErrorKind
fn clone(&self) -> RequestErrorKind
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 RequestErrorKind
impl Debug for RequestErrorKind
source§impl PartialEq<RequestErrorKind> for RequestErrorKind
impl PartialEq<RequestErrorKind> for RequestErrorKind
source§fn eq(&self, other: &RequestErrorKind) -> bool
fn eq(&self, other: &RequestErrorKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.