pub struct GetManySubaccountsRequest {
pub query: GetManySubaccountsRequestQuery,
}Expand description
Used in tiered account structures (such as Financial Advisor and IBroker Accounts) to return a list of sub-accounts, paginated up to 20 accounts per page, for which the user can view position and account-related information. This endpoint must be called prior to calling other /portfolio endpoints for those sub-accounts. If you have less than 100 sub-accounts use /portfolio/subaccounts. To query a list of accounts the user can trade, see /iserver/accounts.
Fields§
§query: GetManySubaccountsRequestQueryImplementations§
Source§impl GetManySubaccountsRequest
impl GetManySubaccountsRequest
Sourcepub async fn parse_response(req: Response) -> Result<GetManySubaccountsResponse>
pub async fn parse_response(req: Response) -> Result<GetManySubaccountsResponse>
Parse the HTTP response into the response enum.
Trait Implementations§
Source§impl Clone for GetManySubaccountsRequest
impl Clone for GetManySubaccountsRequest
Source§fn clone(&self) -> GetManySubaccountsRequest
fn clone(&self) -> GetManySubaccountsRequest
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 Debug for GetManySubaccountsRequest
impl Debug for GetManySubaccountsRequest
Source§impl Default for GetManySubaccountsRequest
impl Default for GetManySubaccountsRequest
Source§impl Validate for GetManySubaccountsRequest
impl Validate for GetManySubaccountsRequest
Source§impl<'v_a> ValidateArgs<'v_a> for GetManySubaccountsRequest
impl<'v_a> ValidateArgs<'v_a> for GetManySubaccountsRequest
Auto Trait Implementations§
impl Freeze for GetManySubaccountsRequest
impl RefUnwindSafe for GetManySubaccountsRequest
impl Send for GetManySubaccountsRequest
impl Sync for GetManySubaccountsRequest
impl Unpin for GetManySubaccountsRequest
impl UnsafeUnpin for GetManySubaccountsRequest
impl UnwindSafe for GetManySubaccountsRequest
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