Struct rbw::db::Db[][src]

pub struct Db {
    pub access_token: Option<String>,
    pub refresh_token: Option<String>,
    pub iterations: Option<u32>,
    pub protected_key: Option<String>,
    pub protected_private_key: Option<String>,
    pub protected_org_keys: HashMap<String, String>,
    pub entries: Vec<Entry>,
}

Fields

access_token: Option<String>refresh_token: Option<String>iterations: Option<u32>protected_key: Option<String>protected_private_key: Option<String>protected_org_keys: HashMap<String, String>entries: Vec<Entry>

Implementations

impl Db[src]

pub fn new() -> Self[src]

pub fn load(server: &str, email: &str) -> Result<Self>[src]

pub async fn load_async(server: &str, email: &str) -> Result<Self>[src]

pub fn save(&self, server: &str, email: &str) -> Result<()>[src]

pub async fn save_async(&self, server: &str, email: &str) -> Result<()>[src]

pub fn remove(server: &str, email: &str) -> Result<()>[src]

pub fn needs_login(&self) -> bool[src]

Trait Implementations

impl Debug for Db[src]

impl Default for Db[src]

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

impl Serialize for Db[src]

Auto Trait Implementations

impl RefUnwindSafe for Db

impl Send for Db

impl Sync for Db

impl Unpin for Db

impl UnwindSafe for Db

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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,