pub struct AccountCoinsRequest {
pub network_identifier: NetworkIdentifier,
pub account_identifier: AccountIdentifier,
pub include_mempool: bool,
pub currencies: Option<Vec<Currency>>,
}Expand description
AccountCoinsRequest : AccountCoinsRequest is utilized to make a request on the /account/coins endpoint.
Fields§
§network_identifier: NetworkIdentifier§account_identifier: AccountIdentifier§include_mempool: boolInclude state from the mempool when looking up an account’s unspent coins. Note, using this functionality breaks any guarantee of idempotency.
currencies: Option<Vec<Currency>>In some cases, the caller may not want to retrieve coins for all currencies for an AccountIdentifier. If the currencies field is populated, only coins for the specified currencies will be returned. If not populated, all unspent coins will be returned.
Implementations§
Source§impl AccountCoinsRequest
impl AccountCoinsRequest
Sourcepub fn new(
network_identifier: NetworkIdentifier,
account_identifier: AccountIdentifier,
include_mempool: bool,
) -> AccountCoinsRequest
pub fn new( network_identifier: NetworkIdentifier, account_identifier: AccountIdentifier, include_mempool: bool, ) -> AccountCoinsRequest
AccountCoinsRequest is utilized to make a request on the /account/coins endpoint.
Trait Implementations§
Source§impl Clone for AccountCoinsRequest
impl Clone for AccountCoinsRequest
Source§fn clone(&self) -> AccountCoinsRequest
fn clone(&self) -> AccountCoinsRequest
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 AccountCoinsRequest
impl Debug for AccountCoinsRequest
Source§impl Default for AccountCoinsRequest
impl Default for AccountCoinsRequest
Source§fn default() -> AccountCoinsRequest
fn default() -> AccountCoinsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountCoinsRequest
impl<'de> Deserialize<'de> for AccountCoinsRequest
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AccountCoinsRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AccountCoinsRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AccountCoinsRequest
impl PartialEq for AccountCoinsRequest
Source§impl Serialize for AccountCoinsRequest
impl Serialize for AccountCoinsRequest
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for AccountCoinsRequest
impl StructuralPartialEq for AccountCoinsRequest
Auto Trait Implementations§
impl Freeze for AccountCoinsRequest
impl RefUnwindSafe for AccountCoinsRequest
impl Send for AccountCoinsRequest
impl Sync for AccountCoinsRequest
impl Unpin for AccountCoinsRequest
impl UnwindSafe for AccountCoinsRequest
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