pub struct JsonRpcResponseFailure<E> {
pub id: JsonRpcId,
pub error: ErrorData<E>,
pub jsonrpc: String,
}Fields§
§id: JsonRpcId§error: ErrorData<E>§jsonrpc: StringTrait Implementations§
Source§impl<E: Debug> Debug for JsonRpcResponseFailure<E>
impl<E: Debug> Debug for JsonRpcResponseFailure<E>
Source§impl<'de, E> Deserialize<'de> for JsonRpcResponseFailure<E>where
E: Deserialize<'de>,
impl<'de, E> Deserialize<'de> for JsonRpcResponseFailure<E>where
E: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<E> Freeze for JsonRpcResponseFailure<E>where
E: Freeze,
impl<E> RefUnwindSafe for JsonRpcResponseFailure<E>where
E: RefUnwindSafe,
impl<E> Send for JsonRpcResponseFailure<E>where
E: Send,
impl<E> Sync for JsonRpcResponseFailure<E>where
E: Sync,
impl<E> Unpin for JsonRpcResponseFailure<E>where
E: Unpin,
impl<E> UnwindSafe for JsonRpcResponseFailure<E>where
E: UnwindSafe,
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