Struct whatsappweb::connection::PersistentSession[][src]

pub struct PersistentSession {
    pub client_token: String,
    pub server_token: String,
    pub client_id: [u8; 8],
    pub enc: [u8; 32],
    pub mac: [u8; 32],
}

Stores the parameters to login without scanning the qrcode again.

Fields

Trait Implementations

impl PartialEq for PersistentSession
[src]

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

This method tests for !=.

impl Debug for PersistentSession
[src]

Formats the value using the given formatter. Read more

impl Clone for PersistentSession
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations