pub struct PortfolioApiClient<C: Connect> { /* private fields */ }Implementations§
Source§impl<C: Connect> PortfolioApiClient<C>
impl<C: Connect> PortfolioApiClient<C>
pub fn new(configuration: Rc<Configuration<C>>) -> PortfolioApiClient<C>
Trait Implementations§
Source§impl<C: Connect> PortfolioApi for PortfolioApiClient<C>
impl<C: Connect> PortfolioApi for PortfolioApiClient<C>
fn portfolio_account_id_allocation_get( &self, account_id: &str, ) -> Box<dyn Future<Item = Allocation, Error = Error<Value>>>
fn portfolio_account_id_ledger_get( &self, account_id: &str, ) -> Box<dyn Future<Item = InlineResponse20033, Error = Error<Value>>>
fn portfolio_account_id_meta_get( &self, account_id: &str, ) -> Box<dyn Future<Item = Accounts, Error = Error<Value>>>
fn portfolio_account_id_position_conid_get( &self, account_id: &str, conid: i32, ) -> Box<dyn Future<Item = Position, Error = Error<Value>>>
fn portfolio_account_id_positions_invalidate_post( &self, account_id: &str, ) -> Box<dyn Future<Item = Value, Error = Error<Value>>>
fn portfolio_account_id_positions_page_id_get( &self, account_id: &str, page_id: &str, model: &str, sort: &str, direction: &str, period: &str, ) -> Box<dyn Future<Item = Position, Error = Error<Value>>>
fn portfolio_account_id_summary_get( &self, account_id: &str, ) -> Box<dyn Future<Item = InlineResponse20034, Error = Error<Value>>>
fn portfolio_accounts_get( &self, ) -> Box<dyn Future<Item = Accounts, Error = Error<Value>>>
fn portfolio_allocation_post( &self, body: Body10, ) -> Box<dyn Future<Item = Allocation, Error = Error<Value>>>
fn portfolio_positions_conid_get( &self, conid: i32, ) -> Box<dyn Future<Item = InlineResponse20032, Error = Error<Value>>>
fn portfolio_subaccounts_get( &self, ) -> Box<dyn Future<Item = Account, Error = Error<Value>>>
Auto Trait Implementations§
impl<C> Freeze for PortfolioApiClient<C>
impl<C> !RefUnwindSafe for PortfolioApiClient<C>
impl<C> !Send for PortfolioApiClient<C>
impl<C> !Sync for PortfolioApiClient<C>
impl<C> Unpin for PortfolioApiClient<C>
impl<C> !UnwindSafe for PortfolioApiClient<C>
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