pub struct PerformanceResponseNavDatum {
pub base_currency: Option<String>,
pub end: Option<String>,
pub id: Option<String>,
pub id_type: Option<String>,
pub navs: Option<Vec<Value>>,
pub start: Option<String>,
pub start_nav: Option<PerformanceResponseNavDatumStartNav>,
}Fields§
§base_currency: Option<String>Returns the base currency used in the account.
end: Option<String>Returns the end of the available frequency.
id: Option<String>Returns the account identifier.
id_type: Option<String>Returns how identifiers are determined.
Returns sequential data points corresponding to the net asset value between the “start” and “end” days.
start: Option<String>Returns the first available date for data.
Returns the intiial NAV available.
Trait Implementations§
Source§fn clone(&self) -> PerformanceResponseNavDatum
fn clone(&self) -> PerformanceResponseNavDatum
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§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§
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