pub enum RpcOpsError {
RootNotFound,
RequestOpsError(RequestOpsError),
}Expand description
RpcOpsError
Variants§
RootNotFound
RequestOpsError(RequestOpsError)
Trait Implementations§
Source§impl Debug for RpcOpsError
impl Debug for RpcOpsError
Source§impl Display for RpcOpsError
impl Display for RpcOpsError
Source§impl Error for RpcOpsError
impl Error for RpcOpsError
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()
Source§impl From<RequestOpsError> for RpcOpsError
impl From<RequestOpsError> for RpcOpsError
Source§fn from(source: RequestOpsError) -> Self
fn from(source: RequestOpsError) -> Self
Converts to this type from the input type.
Source§impl From<RpcOpsError> for Error
impl From<RpcOpsError> for Error
Source§fn from(err: RpcOpsError) -> Self
fn from(err: RpcOpsError) -> Self
Converts to this type from the input type.
Source§impl From<RpcOpsError> for OpsError
impl From<RpcOpsError> for OpsError
Source§fn from(source: RpcOpsError) -> Self
fn from(source: RpcOpsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RpcOpsError
impl RefUnwindSafe for RpcOpsError
impl Send for RpcOpsError
impl Sync for RpcOpsError
impl Unpin for RpcOpsError
impl UnwindSafe for RpcOpsError
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