Struct google_admob1::api::ReportFooter[][src]

pub struct ReportFooter {
    pub matching_row_count: Option<String>,
    pub warnings: Option<Vec<ReportWarning>>,
}

Groups data available after report generation, for example, warnings and row counts. Always sent as the last message in the stream response.

This type is not used in any activity, and only used as part of another schema.

Fields

matching_row_count: Option<String>

Total number of rows that matched the request. Warning: This count does NOT always match the number of rows in the response. Do not make that assumption when processing the response.

warnings: Option<Vec<ReportWarning>>

Warnings associated with generation of the report.

Trait Implementations

impl Clone for ReportFooter[src]

impl Debug for ReportFooter[src]

impl Default for ReportFooter[src]

impl<'de> Deserialize<'de> for ReportFooter[src]

impl Part for ReportFooter[src]

impl Serialize for ReportFooter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.