[][src]Struct reporting_api::BareReport

pub struct BareReport {
    pub age: Duration,
    pub url: String,
    pub user_agent: String,
    pub report_type: String,
    pub body: Value,
}

Represents a single report uploaded via the Reporting API, whose body is still a JSON object and has not yet been parsed into a more specific Rust type.

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.

report_type: String

The type of report

body: Value

The body of the report, still encoded as a JSON object.

Methods

impl BareReport[src]

pub fn parse<C>(self) -> Option<Result<Report<C>, Error>> where
    C: ReportType + for<'de> Deserialize<'de>, 
[src]

Verifies that a bare report has a particular type, and tries to parse the report body using the corresponding Rust type. Returns Some(Ok(...)) if everything goes well. Returns None if the report has a different type, and Some(Err(...)) if the report has the right type but we can't parse the report body using that type's schema.

Trait Implementations

impl Clone for BareReport[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<BareReport> for BareReport[src]

impl Default for BareReport[src]

impl Debug for BareReport[src]

impl Serialize for BareReport[src]

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

Auto Trait Implementations

impl Send for BareReport

impl Sync for BareReport

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

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