pub struct ListWalletNftsParams {
pub standard: Option<NftStandard>,
pub name: Option<String>,
pub token_address: Option<String>,
pub page: PageParams,
}Expand description
Query parameters for the list-wallet-NFTs endpoint.
Fields§
§standard: Option<NftStandard>Filter by NFT standard.
name: Option<String>Filter by token name.
token_address: Option<String>Filter by token contract address.
page: PageParamsPagination parameters.
Trait Implementations§
Source§impl Clone for ListWalletNftsParams
impl Clone for ListWalletNftsParams
Source§fn clone(&self) -> ListWalletNftsParams
fn clone(&self) -> ListWalletNftsParams
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 ListWalletNftsParams
impl Debug for ListWalletNftsParams
Source§impl Default for ListWalletNftsParams
impl Default for ListWalletNftsParams
Source§fn default() -> ListWalletNftsParams
fn default() -> ListWalletNftsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListWalletNftsParams
impl RefUnwindSafe for ListWalletNftsParams
impl Send for ListWalletNftsParams
impl Sync for ListWalletNftsParams
impl Unpin for ListWalletNftsParams
impl UnsafeUnpin for ListWalletNftsParams
impl UnwindSafe for ListWalletNftsParams
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