pub struct GetManySubaccountsRequestQuery {
pub account_id: Option<String>,
pub nocache: Option<bool>,
}Fields§
§account_id: Option<String>accountId
- Example:
Some("DU123456".to_string())
nocache: Option<bool>Set if request should be made without caching.
Trait Implementations§
Source§impl Clone for GetManySubaccountsRequestQuery
impl Clone for GetManySubaccountsRequestQuery
Source§fn clone(&self) -> GetManySubaccountsRequestQuery
fn clone(&self) -> GetManySubaccountsRequestQuery
Returns a duplicate 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 PartialEq for GetManySubaccountsRequestQuery
impl PartialEq for GetManySubaccountsRequestQuery
Source§fn eq(&self, other: &GetManySubaccountsRequestQuery) -> bool
fn eq(&self, other: &GetManySubaccountsRequestQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetManySubaccountsRequestQuery
Auto Trait Implementations§
impl Freeze for GetManySubaccountsRequestQuery
impl RefUnwindSafe for GetManySubaccountsRequestQuery
impl Send for GetManySubaccountsRequestQuery
impl Sync for GetManySubaccountsRequestQuery
impl Unpin for GetManySubaccountsRequestQuery
impl UnsafeUnpin for GetManySubaccountsRequestQuery
impl UnwindSafe for GetManySubaccountsRequestQuery
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