pub struct ReportingDataResponse<M, I>{
pub grand_totals: Option<GrandTotalsRow>,
pub row: Vec<Row<M, I>>,
}Fields§
§grand_totals: Option<GrandTotalsRow>§row: Vec<Row<M, I>>Trait Implementations§
Source§impl<M, I> Clone for ReportingDataResponse<M, I>
impl<M, I> Clone for ReportingDataResponse<M, I>
Source§fn clone(&self) -> ReportingDataResponse<M, I>
fn clone(&self) -> ReportingDataResponse<M, I>
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<M, I> Debug for ReportingDataResponse<M, I>
impl<M, I> Debug for ReportingDataResponse<M, I>
Source§impl<M, I> Default for ReportingDataResponse<M, I>
impl<M, I> Default for ReportingDataResponse<M, I>
Source§impl<'de, M, I> Deserialize<'de> for ReportingDataResponse<M, I>
impl<'de, M, I> Deserialize<'de> for ReportingDataResponse<M, I>
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<M, I> Freeze for ReportingDataResponse<M, I>
impl<M, I> RefUnwindSafe for ReportingDataResponse<M, I>where
M: RefUnwindSafe,
I: RefUnwindSafe,
impl<M, I> Send for ReportingDataResponse<M, I>
impl<M, I> Sync for ReportingDataResponse<M, I>
impl<M, I> Unpin for ReportingDataResponse<M, I>
impl<M, I> UnwindSafe for ReportingDataResponse<M, I>where
M: UnwindSafe,
I: UnwindSafe,
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