Enum quic_rpc::transport::combined::OpenBiError
source · pub enum OpenBiError<A: CT, B: CT> {
A(A::OpenBiError),
B(B::OpenBiError),
NoChannel,
}
Expand description
OpenBiError for combined channels
Variants§
A(A::OpenBiError)
A variant
B(B::OpenBiError)
B variant
NoChannel
None of the two channels is configured
Trait Implementations§
source§impl<A: Debug + CT, B: Debug + CT> Debug for OpenBiError<A, B>where
A::OpenBiError: Debug,
B::OpenBiError: Debug,
impl<A: Debug + CT, B: Debug + CT> Debug for OpenBiError<A, B>where
A::OpenBiError: Debug,
B::OpenBiError: Debug,
source§impl<A: CT, B: CT> Error for OpenBiError<A, B>
impl<A: CT, B: CT> Error for OpenBiError<A, B>
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()