Struct chrome_remote_interface_model::network::SignedExchangeSignature[][src]

pub struct SignedExchangeSignature { /* fields omitted */ }
This is supported on crate features Network and Debugger and Runtime and Security and experimental only.

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

Implementations

impl SignedExchangeSignature[src]

pub fn builder() -> SignedExchangeSignatureBuilder[src]

pub fn label(&self) -> &str[src]

Signed exchange signature label.

pub fn signature(&self) -> &str[src]

The hex string of signed exchange signature.

pub fn integrity(&self) -> &str[src]

Signed exchange signature integrity.

pub fn cert_url(&self) -> Option<&String>[src]

Signed exchange signature cert Url.

pub fn cert_sha256(&self) -> Option<&String>[src]

The hex string of signed exchange signature cert sha256.

pub fn validity_url(&self) -> &str[src]

Signed exchange signature validity Url.

pub fn date(&self) -> u32[src]

Signed exchange signature date.

pub fn expires(&self) -> u32[src]

Signed exchange signature expires.

pub fn certificates(&self) -> Option<&Vec<String>>[src]

The encoded certificates.

Trait Implementations

impl Clone for SignedExchangeSignature[src]

impl Debug for SignedExchangeSignature[src]

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

impl Serialize for SignedExchangeSignature[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.