pub struct FundMoneyRankItem {Show 17 fields
pub rank: i32,
pub fund_code: String,
pub fund_name: String,
pub date: String,
pub yield_per_10k: f64,
pub annualized_7d: f64,
pub annualized_14d: f64,
pub annualized_28d: f64,
pub month_1: f64,
pub month_3: f64,
pub month_6: f64,
pub year_1: f64,
pub year_2: f64,
pub year_3: f64,
pub year_5: f64,
pub ytd: f64,
pub since_found: f64,
}Expand description
Fund money rank item.
Fields§
§rank: i32§fund_code: String§fund_name: String§date: String§yield_per_10k: f64§annualized_7d: f64§annualized_14d: f64§annualized_28d: f64§month_1: f64§month_3: f64§month_6: f64§year_1: f64§year_2: f64§year_3: f64§year_5: f64§ytd: f64§since_found: f64Trait Implementations§
Source§impl Clone for FundMoneyRankItem
impl Clone for FundMoneyRankItem
Source§fn clone(&self) -> FundMoneyRankItem
fn clone(&self) -> FundMoneyRankItem
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 FundMoneyRankItem
impl Debug for FundMoneyRankItem
Source§impl<'de> Deserialize<'de> for FundMoneyRankItem
impl<'de> Deserialize<'de> for FundMoneyRankItem
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 FundMoneyRankItem
impl RefUnwindSafe for FundMoneyRankItem
impl Send for FundMoneyRankItem
impl Sync for FundMoneyRankItem
impl Unpin for FundMoneyRankItem
impl UnsafeUnpin for FundMoneyRankItem
impl UnwindSafe for FundMoneyRankItem
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