pub struct AuthGetRequestOptions {
pub account_ids: Option<Vec<String>>,
}
Expand description
An optional object to filter /auth/get
results.
Fields§
§account_ids: Option<Vec<String>>
A list of account_ids
to retrieve for the Item.
Note: An error will be returned if a provided account_id
is not associated with the Item.
Trait Implementations§
Source§impl Clone for AuthGetRequestOptions
impl Clone for AuthGetRequestOptions
Source§fn clone(&self) -> AuthGetRequestOptions
fn clone(&self) -> AuthGetRequestOptions
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 AuthGetRequestOptions
impl Debug for AuthGetRequestOptions
Source§impl Default for AuthGetRequestOptions
impl Default for AuthGetRequestOptions
Source§fn default() -> AuthGetRequestOptions
fn default() -> AuthGetRequestOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthGetRequestOptions
impl<'de> Deserialize<'de> for AuthGetRequestOptions
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 AuthGetRequestOptions
impl Display for AuthGetRequestOptions
Auto Trait Implementations§
impl Freeze for AuthGetRequestOptions
impl RefUnwindSafe for AuthGetRequestOptions
impl Send for AuthGetRequestOptions
impl Sync for AuthGetRequestOptions
impl Unpin for AuthGetRequestOptions
impl UnwindSafe for AuthGetRequestOptions
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