pub enum JsonRpcResponseOrError {
Response(JsonRpcResponse),
Error(JsonRpcError),
}
Expand description
Items in a batch response
Variantsยง
Response(JsonRpcResponse)
Error(JsonRpcError)
Trait Implementationsยง
Sourceยงimpl Clone for JsonRpcResponseOrError
impl Clone for JsonRpcResponseOrError
Sourceยงfn clone(&self) -> JsonRpcResponseOrError
fn clone(&self) -> JsonRpcResponseOrError
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSourceยงimpl Debug for JsonRpcResponseOrError
impl Debug for JsonRpcResponseOrError
Sourceยงimpl<'de> Deserialize<'de> for JsonRpcResponseOrError
impl<'de> Deserialize<'de> for JsonRpcResponseOrError
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
Sourceยงimpl PartialEq for JsonRpcResponseOrError
impl PartialEq for JsonRpcResponseOrError
Sourceยงimpl Serialize for JsonRpcResponseOrError
impl Serialize for JsonRpcResponseOrError
impl StructuralPartialEq for JsonRpcResponseOrError
Auto Trait Implementationsยง
impl Freeze for JsonRpcResponseOrError
impl RefUnwindSafe for JsonRpcResponseOrError
impl Send for JsonRpcResponseOrError
impl Sync for JsonRpcResponseOrError
impl Unpin for JsonRpcResponseOrError
impl UnwindSafe for JsonRpcResponseOrError
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