pub struct PortfolioPerformancePoint {
pub cumulative_pnl: Option<String>,
pub cumulative_return_pct: Option<String>,
pub equity: Option<String>,
pub timestamp: Option<String>,
}Expand description
PortfolioPerformancePoint
JSON schema
{
"type": "object",
"properties": {
"cumulativePnl": {
"type": [
"string",
"null"
]
},
"cumulativeReturnPct": {
"type": [
"string",
"null"
]
},
"equity": {
"type": [
"string",
"null"
]
},
"timestamp": {
"type": [
"string",
"null"
]
}
}
}Fields§
§cumulative_pnl: Option<String>§cumulative_return_pct: Option<String>§equity: Option<String>§timestamp: Option<String>Trait Implementations§
Source§impl Clone for PortfolioPerformancePoint
impl Clone for PortfolioPerformancePoint
Source§fn clone(&self) -> PortfolioPerformancePoint
fn clone(&self) -> PortfolioPerformancePoint
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 PortfolioPerformancePoint
impl Debug for PortfolioPerformancePoint
Source§impl Default for PortfolioPerformancePoint
impl Default for PortfolioPerformancePoint
Source§impl<'de> Deserialize<'de> for PortfolioPerformancePoint
impl<'de> Deserialize<'de> for PortfolioPerformancePoint
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 PortfolioPerformancePoint
impl RefUnwindSafe for PortfolioPerformancePoint
impl Send for PortfolioPerformancePoint
impl Sync for PortfolioPerformancePoint
impl Unpin for PortfolioPerformancePoint
impl UnsafeUnpin for PortfolioPerformancePoint
impl UnwindSafe for PortfolioPerformancePoint
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