pub struct QueryManagedSubAccountListParams {
pub email: Option<String>,
pub page: Option<i64>,
pub limit: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_managed_sub_account_list] operation.
This struct holds all of the inputs you can pass when calling
query_managed_sub_account_list.
Fields§
§email: Option<String>The email parameter.
This field is **optional.
page: Option<i64>The page parameter.
This field is **optional.
limit: Option<i64>The limit parameter.
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QueryManagedSubAccountListParams
impl QueryManagedSubAccountListParams
Sourcepub fn builder() -> QueryManagedSubAccountListParamsBuilder
pub fn builder() -> QueryManagedSubAccountListParamsBuilder
Create a builder for [query_managed_sub_account_list].
Trait Implementations§
Source§impl Clone for QueryManagedSubAccountListParams
impl Clone for QueryManagedSubAccountListParams
Source§fn clone(&self) -> QueryManagedSubAccountListParams
fn clone(&self) -> QueryManagedSubAccountListParams
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 Default for QueryManagedSubAccountListParams
impl Default for QueryManagedSubAccountListParams
Source§fn default() -> QueryManagedSubAccountListParams
fn default() -> QueryManagedSubAccountListParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryManagedSubAccountListParams
impl<'de> Deserialize<'de> for QueryManagedSubAccountListParams
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 QueryManagedSubAccountListParams
impl RefUnwindSafe for QueryManagedSubAccountListParams
impl Send for QueryManagedSubAccountListParams
impl Sync for QueryManagedSubAccountListParams
impl Unpin for QueryManagedSubAccountListParams
impl UnsafeUnpin for QueryManagedSubAccountListParams
impl UnwindSafe for QueryManagedSubAccountListParams
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