pub struct BatchOperationResult {
pub id: String,
pub result: Option<Value>,
pub error: Option<JsonRpcError>,
}
Expand description
Individual batch operation result
Fields§
§id: String
§result: Option<Value>
§error: Option<JsonRpcError>
Trait Implementations§
Source§impl Clone for BatchOperationResult
impl Clone for BatchOperationResult
Source§fn clone(&self) -> BatchOperationResult
fn clone(&self) -> BatchOperationResult
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 BatchOperationResult
impl Debug for BatchOperationResult
Source§impl<'de> Deserialize<'de> for BatchOperationResult
impl<'de> Deserialize<'de> for BatchOperationResult
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 BatchOperationResult
impl PartialEq for BatchOperationResult
Source§impl Serialize for BatchOperationResult
impl Serialize for BatchOperationResult
impl StructuralPartialEq for BatchOperationResult
Auto Trait Implementations§
impl Freeze for BatchOperationResult
impl RefUnwindSafe for BatchOperationResult
impl Send for BatchOperationResult
impl Sync for BatchOperationResult
impl Unpin for BatchOperationResult
impl UnwindSafe for BatchOperationResult
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