Struct chromiumoxide_cdp::cdp::browser_protocol::network::SignedExchangeSignature[][src]

pub struct SignedExchangeSignature {
    pub label: String,
    pub signature: String,
    pub integrity: String,
    pub cert_url: Option<String>,
    pub cert_sha256: Option<String>,
    pub validity_url: String,
    pub date: i64,
    pub expires: i64,
    pub certificates: Option<Vec<String>>,
}
Expand description

Information about a signed exchange signature. https://wicg.github.io/webpackage/draft-yasskin-httpbis-origin-signed-exchanges-impl.html#rfc.section.3.1 SignedExchangeSignature

Fields

label: String

Signed exchange signature label.

signature: String

The hex string of signed exchange signature.

integrity: String

Signed exchange signature integrity.

cert_url: Option<String>

Signed exchange signature cert Url.

cert_sha256: Option<String>

The hex string of signed exchange signature cert sha256.

validity_url: String

Signed exchange signature validity Url.

date: i64

Signed exchange signature date.

expires: i64

Signed exchange signature expires.

certificates: Option<Vec<String>>

The encoded certificates.

Implementations

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

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. 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

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.