pub struct QuerySubAccountApiKeyParams {
pub email: String,
pub sub_account_api_key: Option<String>,
pub page: Option<i64>,
pub size: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_sub_account_api_key] operation.
This struct holds all of the inputs you can pass when calling
query_sub_account_api_key.
Fields§
§email: StringSub-account email
This field is **required.
sub_account_api_key: Option<String>Specify an API Key for exact match
This field is **optional.
page: Option<i64>Page number, default 1, minimum 1
This field is **optional.
size: Option<i64>Page size, default 30, maximum 100
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QuerySubAccountApiKeyParams
impl QuerySubAccountApiKeyParams
Sourcepub fn builder(email: String) -> QuerySubAccountApiKeyParamsBuilder
pub fn builder(email: String) -> QuerySubAccountApiKeyParamsBuilder
Create a builder for [query_sub_account_api_key].
Required parameters:
email— Sub-account email
Trait Implementations§
Source§impl Clone for QuerySubAccountApiKeyParams
impl Clone for QuerySubAccountApiKeyParams
Source§fn clone(&self) -> QuerySubAccountApiKeyParams
fn clone(&self) -> QuerySubAccountApiKeyParams
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 QuerySubAccountApiKeyParams
impl Debug for QuerySubAccountApiKeyParams
Source§impl<'de> Deserialize<'de> for QuerySubAccountApiKeyParams
impl<'de> Deserialize<'de> for QuerySubAccountApiKeyParams
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 QuerySubAccountApiKeyParams
impl RefUnwindSafe for QuerySubAccountApiKeyParams
impl Send for QuerySubAccountApiKeyParams
impl Sync for QuerySubAccountApiKeyParams
impl Unpin for QuerySubAccountApiKeyParams
impl UnsafeUnpin for QuerySubAccountApiKeyParams
impl UnwindSafe for QuerySubAccountApiKeyParams
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