pub struct ListWalletBalancesParams {
pub include_all: Option<bool>,
pub name: Option<String>,
pub token_address: Option<String>,
pub standard: Option<TokenStandard>,
pub page: PageParams,
}Expand description
Query parameters for listWalletBalances.
Fields§
§include_all: Option<bool>If true, include all tokens even if balance is zero.
name: Option<String>Filter by token name.
token_address: Option<String>Filter by token contract address.
standard: Option<TokenStandard>Filter by token standard.
page: PageParamsPagination cursors.
Trait Implementations§
Source§impl Clone for ListWalletBalancesParams
impl Clone for ListWalletBalancesParams
Source§fn clone(&self) -> ListWalletBalancesParams
fn clone(&self) -> ListWalletBalancesParams
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 ListWalletBalancesParams
impl Debug for ListWalletBalancesParams
Source§impl Default for ListWalletBalancesParams
impl Default for ListWalletBalancesParams
Source§fn default() -> ListWalletBalancesParams
fn default() -> ListWalletBalancesParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWalletBalancesParams
impl<'de> Deserialize<'de> for ListWalletBalancesParams
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
Auto Trait Implementations§
impl Freeze for ListWalletBalancesParams
impl RefUnwindSafe for ListWalletBalancesParams
impl Send for ListWalletBalancesParams
impl Sync for ListWalletBalancesParams
impl Unpin for ListWalletBalancesParams
impl UnsafeUnpin for ListWalletBalancesParams
impl UnwindSafe for ListWalletBalancesParams
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