lastpass 0.1.0

An unofficial interface to the LastPass API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::keys::PrivateKey;

/// Information about the current user session.
#[derive(Debug, Clone, PartialEq)]
#[non_exhaustive]
pub struct Session {
    /// The session ID.
    pub uid: String,
    /// A token that can is used to access attachments.
    pub token: String,
    /// A private key used to decode shared items.
    pub private_key: PrivateKey,
    /// The PHP session ID.
    pub session_id: String,
}