pub enum RpcError<E = RemoteError> {
Call(E),
Channel(RecvError),
}
Expand description
An error from an RPC call, via
RpcSend::call_failable
.
Variants§
Trait Implementations§
source§impl<E> Error for RpcError<E>
impl<E> Error for RpcError<E>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl<E> Freeze for RpcError<E>where
E: Freeze,
impl<E = RemoteError> !RefUnwindSafe for RpcError<E>
impl<E> Send for RpcError<E>where
E: Send,
impl<E> Sync for RpcError<E>where
E: Sync,
impl<E> Unpin for RpcError<E>where
E: Unpin,
impl<E = RemoteError> !UnwindSafe for RpcError<E>
Blanket Implementations§
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