pub struct PingRequest {
    pub document_id: String,
    pub path: String,
    pub body: Vec<u8>,
    pub headers: HeaderMap,
}
Expand description

Represents a request to upload a ping.

Fields§

§document_id: String

The Job ID to identify this request, this is the same as the ping UUID.

§path: String

The path for the server to upload the ping to.

§body: Vec<u8>

The body of the request, as a byte array. If gzip encoded, then the headers list will contain a Content-Encoding header with the value gzip.

§headers: HeaderMap

A map with all the headers to be sent with the request.

Implementations§

source§

impl PingRequest

source

pub fn builder(language_binding_name: &str, body_max_size: usize) -> Builder

Creates a new builder-style structure to help build a PingRequest.

Arguments
  • language_binding_name - The name of the language used by the binding that instantiated this Glean instance. This is used to build the X-Telemetry-Agent header value.
  • body_max_size - The maximum size in bytes the compressed ping body may have to be eligible for upload.
source

pub fn is_deletion_request(&self) -> bool

Verifies if current request is for a deletion-request ping.

source

pub fn pretty_body(&self) -> Option<String>

Decompresses and pretty-format the ping payload

Should be used for logging when required. This decompresses the payload in memory.

Trait Implementations§

source§

impl Clone for PingRequest

source§

fn clone(&self) -> PingRequest

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PingRequest

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for PingRequest

source§

fn eq(&self, other: &PingRequest) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for PingRequest

source§

impl StructuralEq for PingRequest

source§

impl StructuralPartialEq for PingRequest

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.