pub struct GetPortfolioSummaryResponse {
pub activity: Option<PortfolioSummaryActivity>,
pub current: Option<PortfolioSummaryCurrent>,
pub valuation_status: Option<GetPortfolioSummaryResponseValuationStatus>,
pub window: Option<PortfolioWindow>,
}Expand description
GetPortfolioSummaryResponse
JSON schema
{
"type": "object",
"properties": {
"activity": {
"$ref": "#/components/schemas/PortfolioSummaryActivity"
},
"current": {
"$ref": "#/components/schemas/PortfolioSummaryCurrent"
},
"valuationStatus": {
"type": [
"string",
"null"
],
"enum": [
"complete",
"partial"
]
},
"window": {
"$ref": "#/components/schemas/PortfolioWindow"
}
}
}Fields§
§activity: Option<PortfolioSummaryActivity>§current: Option<PortfolioSummaryCurrent>§valuation_status: Option<GetPortfolioSummaryResponseValuationStatus>§window: Option<PortfolioWindow>Trait Implementations§
Source§impl Clone for GetPortfolioSummaryResponse
impl Clone for GetPortfolioSummaryResponse
Source§fn clone(&self) -> GetPortfolioSummaryResponse
fn clone(&self) -> GetPortfolioSummaryResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetPortfolioSummaryResponse
impl Debug for GetPortfolioSummaryResponse
Source§impl<'de> Deserialize<'de> for GetPortfolioSummaryResponse
impl<'de> Deserialize<'de> for GetPortfolioSummaryResponse
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
Auto Trait Implementations§
impl Freeze for GetPortfolioSummaryResponse
impl RefUnwindSafe for GetPortfolioSummaryResponse
impl Send for GetPortfolioSummaryResponse
impl Sync for GetPortfolioSummaryResponse
impl Unpin for GetPortfolioSummaryResponse
impl UnsafeUnpin for GetPortfolioSummaryResponse
impl UnwindSafe for GetPortfolioSummaryResponse
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