pub enum RpcClientError {
CallFailed(String),
ExpectedResponseMessage(Message),
ExpectedCloseMessage(Message),
Transport,
UnsupportedRpcKind,
Dropped,
DecodeError(DecodeError),
SessionsError(Error),
Unknown(Error),
}
Expand description
RPC client error.
Variants§
CallFailed(String)
ExpectedResponseMessage(Message)
ExpectedCloseMessage(Message)
Transport
UnsupportedRpcKind
Dropped
DecodeError(DecodeError)
SessionsError(Error)
Unknown(Error)
Trait Implementations§
source§impl Debug for RpcClientError
impl Debug for RpcClientError
source§impl Display for RpcClientError
impl Display for RpcClientError
source§impl Error for RpcClientError
impl Error for RpcClientError
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 From<DecodeError> for RpcClientError
impl From<DecodeError> for RpcClientError
source§impl From<Error> for RpcClientError
impl From<Error> for RpcClientError
Auto Trait Implementations§
impl Freeze for RpcClientError
impl RefUnwindSafe for RpcClientError
impl Send for RpcClientError
impl Sync for RpcClientError
impl Unpin for RpcClientError
impl UnwindSafe for RpcClientError
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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