pub struct AllocatePortfolioRequest {
pub portfolio_uuid: String,
pub symbol: String,
pub amount: String,
pub currency: String,
}Expand description
Request to allocate funds to a portfolio.
Fields§
§portfolio_uuid: StringPortfolio UUID.
symbol: StringSymbol.
amount: StringAmount to allocate.
currency: StringCurrency.
Implementations§
Trait Implementations§
Source§impl Clone for AllocatePortfolioRequest
impl Clone for AllocatePortfolioRequest
Source§fn clone(&self) -> AllocatePortfolioRequest
fn clone(&self) -> AllocatePortfolioRequest
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 AllocatePortfolioRequest
impl Debug for AllocatePortfolioRequest
Auto Trait Implementations§
impl Freeze for AllocatePortfolioRequest
impl RefUnwindSafe for AllocatePortfolioRequest
impl Send for AllocatePortfolioRequest
impl Sync for AllocatePortfolioRequest
impl Unpin for AllocatePortfolioRequest
impl UnwindSafe for AllocatePortfolioRequest
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