Struct web_push::WebPushPayload [] [src]

pub struct WebPushPayload {
    pub content: Vec<u8>,
    pub crypto_headers: Vec<(&'static str, String)>,
    pub content_encoding: &'static str,
}

The push content payload, already in an encrypted form.

Fields

Encrypted content data.

Headers depending on the authorization scheme and encryption standard.

The encryption standard.

Trait Implementations

impl Debug for WebPushPayload
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for WebPushPayload
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations