Struct glean_core::upload::PingRequest[][src]

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

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 User-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 !=.

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

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.