pub struct ListWalletsParams {
pub address: Option<String>,
pub blockchain: Option<Blockchain>,
pub sca_core: Option<ScaCore>,
pub wallet_set_id: Option<String>,
pub ref_id: Option<String>,
pub page: PageParams,
}Expand description
Query parameters for listWallets.
Fields§
§address: Option<String>Filter by on-chain address.
blockchain: Option<Blockchain>Filter by blockchain.
sca_core: Option<ScaCore>Filter by SCA core version.
wallet_set_id: Option<String>Filter by wallet set ID.
ref_id: Option<String>Filter by application reference ID.
page: PageParamsPagination cursors.
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
Source§impl<'de> Deserialize<'de> for ListWalletsParams
impl<'de> Deserialize<'de> for ListWalletsParams
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 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