pub struct GetBatchAddressUpdateInfoPostRequest {
pub id: Id,
pub jsonrpc: Jsonrpc,
pub method: Method,
pub params: Box<GetBatchAddressUpdateInfoPostRequestParams>,
}
Fields§
§id: Id
An ID to identify the request.
jsonrpc: Jsonrpc
The version of the JSON-RPC protocol.
method: Method
The name of the method to invoke.
params: Box<GetBatchAddressUpdateInfoPostRequestParams>
Implementations§
Source§impl GetBatchAddressUpdateInfoPostRequest
impl GetBatchAddressUpdateInfoPostRequest
pub fn new( id: Id, jsonrpc: Jsonrpc, method: Method, params: GetBatchAddressUpdateInfoPostRequestParams, ) -> GetBatchAddressUpdateInfoPostRequest
Trait Implementations§
Source§impl Clone for GetBatchAddressUpdateInfoPostRequest
impl Clone for GetBatchAddressUpdateInfoPostRequest
Source§fn clone(&self) -> GetBatchAddressUpdateInfoPostRequest
fn clone(&self) -> GetBatchAddressUpdateInfoPostRequest
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 Default for GetBatchAddressUpdateInfoPostRequest
impl Default for GetBatchAddressUpdateInfoPostRequest
Source§fn default() -> GetBatchAddressUpdateInfoPostRequest
fn default() -> GetBatchAddressUpdateInfoPostRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBatchAddressUpdateInfoPostRequest
impl<'de> Deserialize<'de> for GetBatchAddressUpdateInfoPostRequest
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 GetBatchAddressUpdateInfoPostRequest
impl PartialEq for GetBatchAddressUpdateInfoPostRequest
Source§fn eq(&self, other: &GetBatchAddressUpdateInfoPostRequest) -> bool
fn eq(&self, other: &GetBatchAddressUpdateInfoPostRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetBatchAddressUpdateInfoPostRequest
Auto Trait Implementations§
impl Freeze for GetBatchAddressUpdateInfoPostRequest
impl RefUnwindSafe for GetBatchAddressUpdateInfoPostRequest
impl Send for GetBatchAddressUpdateInfoPostRequest
impl Sync for GetBatchAddressUpdateInfoPostRequest
impl Unpin for GetBatchAddressUpdateInfoPostRequest
impl UnwindSafe for GetBatchAddressUpdateInfoPostRequest
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