pub struct AprDataPoint {
pub apr: f64,
pub timestamp: Option<u64>,
pub day: i32,
}Expand description
APR data point
Fields§
§apr: f64Annual percentage rate
timestamp: Option<u64>Timestamp of the data point (optional)
day: i32Day of the data point
Trait Implementations§
Source§impl Clone for AprDataPoint
impl Clone for AprDataPoint
Source§fn clone(&self) -> AprDataPoint
fn clone(&self) -> AprDataPoint
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 AprDataPoint
impl Debug for AprDataPoint
Source§impl<'de> Deserialize<'de> for AprDataPoint
impl<'de> Deserialize<'de> for AprDataPoint
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
Source§impl Display for AprDataPoint
impl Display for AprDataPoint
Auto Trait Implementations§
impl Freeze for AprDataPoint
impl RefUnwindSafe for AprDataPoint
impl Send for AprDataPoint
impl Sync for AprDataPoint
impl Unpin for AprDataPoint
impl UnwindSafe for AprDataPoint
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