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