pub struct InsightsReport {
pub provider: String,
pub date_range: Option<DateRange>,
pub rows: Vec<InsightsRow>,
pub raw: Option<Value>,
}Expand description
A complete insights report returned by a provider.
Fields§
§provider: StringWhich provider generated this report.
date_range: Option<DateRange>The date range the report covers, if applicable.
rows: Vec<InsightsRow>Individual data rows.
raw: Option<Value>Original API response for debugging and raw access.
Trait Implementations§
Source§impl Clone for InsightsReport
impl Clone for InsightsReport
Source§fn clone(&self) -> InsightsReport
fn clone(&self) -> InsightsReport
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 InsightsReport
impl Debug for InsightsReport
Source§impl<'de> Deserialize<'de> for InsightsReport
impl<'de> Deserialize<'de> for InsightsReport
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 InsightsReport
impl RefUnwindSafe for InsightsReport
impl Send for InsightsReport
impl Sync for InsightsReport
impl Unpin for InsightsReport
impl UnsafeUnpin for InsightsReport
impl UnwindSafe for InsightsReport
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