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