Struct glean_core::PingRequest

source ·
pub struct PingRequest {
    pub document_id: String,
    pub path: String,
    pub body: Vec<u8>,
    pub headers: HeaderMap,
    pub body_has_info_sections: bool,
    pub ping_name: String,
}
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.

§body_has_info_sections: bool

Whether the body has {client|ping}_info sections.

§ping_name: String

The ping’s name. Likely also somewhere in path.

Implementations§

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.

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

Decompresses and pretty-format the ping payload

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

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Create a new handle for an Arc value Read more
Clone a handle Read more
Consume a handle, getting back the initial Arc<>
Get a clone of the Arc<> using a “borrowed” handle. Read more

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.