Struct web_push::VapidSignature [] [src]

pub struct VapidSignature {
    pub auth_t: String,
    pub auth_k: String,
}

A struct representing a VAPID signature. Should be generated using the VapidSignatureBuilder.

Fields

The signature

The public key

Trait Implementations

impl Debug for VapidSignature
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> Into<String> for &'a VapidSignature
[src]

[src]

Performs the conversion.

Auto Trait Implementations