pub struct AprHistoryResponse {
pub data: Vec<AprDataPoint>,
pub continuation: Option<String>,
}Expand description
APR history response
Fields§
§data: Vec<AprDataPoint>List of APR data points
continuation: Option<String>Continuation token for pagination
Trait Implementations§
Source§impl Clone for AprHistoryResponse
impl Clone for AprHistoryResponse
Source§fn clone(&self) -> AprHistoryResponse
fn clone(&self) -> AprHistoryResponse
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 AprHistoryResponse
impl Debug for AprHistoryResponse
Source§impl<'de> Deserialize<'de> for AprHistoryResponse
impl<'de> Deserialize<'de> for AprHistoryResponse
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 AprHistoryResponse
impl Display for AprHistoryResponse
Auto Trait Implementations§
impl Freeze for AprHistoryResponse
impl RefUnwindSafe for AprHistoryResponse
impl Send for AprHistoryResponse
impl Sync for AprHistoryResponse
impl Unpin for AprHistoryResponse
impl UnwindSafe for AprHistoryResponse
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