pub struct CryptoGroupedDailyResponse {
pub query_count: u32,
pub results_count: u32,
pub adjusted: bool,
pub results: Vec<CryptoAggregates>,
pub status: String,
pub request_id: String,
pub count: u32,
}
Fields§
§query_count: u32
§results_count: u32
§adjusted: bool
§results: Vec<CryptoAggregates>
§status: String
§request_id: String
§count: u32
Trait Implementations§
Source§impl Clone for CryptoGroupedDailyResponse
impl Clone for CryptoGroupedDailyResponse
Source§fn clone(&self) -> CryptoGroupedDailyResponse
fn clone(&self) -> CryptoGroupedDailyResponse
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 CryptoGroupedDailyResponse
impl Debug for CryptoGroupedDailyResponse
Source§impl<'de> Deserialize<'de> for CryptoGroupedDailyResponse
impl<'de> Deserialize<'de> for CryptoGroupedDailyResponse
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 CryptoGroupedDailyResponse
impl RefUnwindSafe for CryptoGroupedDailyResponse
impl Send for CryptoGroupedDailyResponse
impl Sync for CryptoGroupedDailyResponse
impl Unpin for CryptoGroupedDailyResponse
impl UnwindSafe for CryptoGroupedDailyResponse
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