[][src]Struct reporting_api::Report

pub struct Report {
    pub age: Duration,
    pub url: String,
    pub user_agent: String,
    pub body: Box<dyn ReportBody>,
}

Represents a single report uploaded via the Reporting API.

Fields

age: Duration

The amount of time between when the report was generated by the user agent and when it was uploaded.

url: String

The URL of the request that this report describes.

user_agent: String

The value of the User-Agent header of the request that this report describes.

body: Box<dyn ReportBody>

The body of the report.

Trait Implementations

impl Serialize for Report[src]

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

Auto Trait Implementations

impl !Send for Report

impl !Sync for Report

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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

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