pub struct ListWalletsParams {
pub blockchain: Option<Blockchain>,
pub address: Option<String>,
pub wallet_set_id: Option<String>,
pub ref_id: Option<String>,
pub state: Option<WalletState>,
pub custody_type: Option<CustodyType>,
pub page: PageParams,
}Expand description
Query parameters for the list-wallets endpoint.
Fields§
§blockchain: Option<Blockchain>Filter by blockchain.
address: Option<String>Filter by wallet address.
wallet_set_id: Option<String>Filter by wallet set ID.
ref_id: Option<String>Filter by external reference ID.
state: Option<WalletState>Filter by wallet state.
custody_type: Option<CustodyType>Filter by custody type.
page: PageParamsPagination parameters.
Trait Implementations§
Source§impl Clone for ListWalletsParams
impl Clone for ListWalletsParams
Source§fn clone(&self) -> ListWalletsParams
fn clone(&self) -> ListWalletsParams
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 ListWalletsParams
impl Debug for ListWalletsParams
Source§impl Default for ListWalletsParams
impl Default for ListWalletsParams
Source§fn default() -> ListWalletsParams
fn default() -> ListWalletsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListWalletsParams
impl RefUnwindSafe for ListWalletsParams
impl Send for ListWalletsParams
impl Sync for ListWalletsParams
impl Unpin for ListWalletsParams
impl UnsafeUnpin for ListWalletsParams
impl UnwindSafe for ListWalletsParams
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