pub struct QuerySubAccountListParams {
pub email: Option<String>,
pub is_freeze: Option<String>,
pub page: Option<i64>,
pub limit: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_sub_account_list] operation.
This struct holds all of the inputs you can pass when calling
query_sub_account_list.
Fields§
§email: Option<String>Managed sub-account email
This field is **optional.
is_freeze: Option<String>true or false
This field is **optional.
page: Option<i64>Default value: 1
This field is **optional.
limit: Option<i64>Default value: 1, Max value: 200
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QuerySubAccountListParams
impl QuerySubAccountListParams
Sourcepub fn builder() -> QuerySubAccountListParamsBuilder
pub fn builder() -> QuerySubAccountListParamsBuilder
Create a builder for [query_sub_account_list].
Trait Implementations§
Source§impl Clone for QuerySubAccountListParams
impl Clone for QuerySubAccountListParams
Source§fn clone(&self) -> QuerySubAccountListParams
fn clone(&self) -> QuerySubAccountListParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QuerySubAccountListParams
impl Debug for QuerySubAccountListParams
Source§impl Default for QuerySubAccountListParams
impl Default for QuerySubAccountListParams
Source§fn default() -> QuerySubAccountListParams
fn default() -> QuerySubAccountListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QuerySubAccountListParams
impl RefUnwindSafe for QuerySubAccountListParams
impl Send for QuerySubAccountListParams
impl Sync for QuerySubAccountListParams
impl Unpin for QuerySubAccountListParams
impl UnsafeUnpin for QuerySubAccountListParams
impl UnwindSafe for QuerySubAccountListParams
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