pub struct AccountsGetRequestOptions {
pub account_ids: Option<Vec<String>>,
}
Expand description
An optional object to filter /accounts/get
results.
Fields§
§account_ids: Option<Vec<String>>
An array of account_ids
to retrieve for the Account.
Trait Implementations§
Source§impl Clone for AccountsGetRequestOptions
impl Clone for AccountsGetRequestOptions
Source§fn clone(&self) -> AccountsGetRequestOptions
fn clone(&self) -> AccountsGetRequestOptions
Returns a copy 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 AccountsGetRequestOptions
impl Debug for AccountsGetRequestOptions
Source§impl Default for AccountsGetRequestOptions
impl Default for AccountsGetRequestOptions
Source§fn default() -> AccountsGetRequestOptions
fn default() -> AccountsGetRequestOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountsGetRequestOptions
impl<'de> Deserialize<'de> for AccountsGetRequestOptions
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
Source§impl Display for AccountsGetRequestOptions
impl Display for AccountsGetRequestOptions
Auto Trait Implementations§
impl Freeze for AccountsGetRequestOptions
impl RefUnwindSafe for AccountsGetRequestOptions
impl Send for AccountsGetRequestOptions
impl Sync for AccountsGetRequestOptions
impl Unpin for AccountsGetRequestOptions
impl UnwindSafe for AccountsGetRequestOptions
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