[][src]Struct rbw::api::Client

pub struct Client { /* fields omitted */ }

Implementations

impl Client[src]

pub fn new(base_url: &str, identity_url: &str) -> Self[src]

pub async fn prelogin<'_, '_>(&'_ self, email: &'_ str) -> Result<u32>[src]

pub async fn login<'_, '_, '_, '_>(
    &'_ self,
    email: &'_ str,
    master_password_hash: &'_ PasswordHash,
    two_factor_token: Option<&'_ str>,
    two_factor_provider: Option<TwoFactorProviderType>
) -> Result<(String, String, String)>
[src]

pub async fn sync<'_, '_>(
    &'_ self,
    access_token: &'_ str
) -> Result<(String, String, HashMap<String, String>, Vec<Entry>)>
[src]

pub fn add(
    &self,
    access_token: &str,
    name: &str,
    data: &EntryData,
    notes: Option<&str>,
    folder_id: Option<&str>
) -> Result<()>
[src]

pub fn edit(
    &self,
    access_token: &str,
    id: &str,
    org_id: Option<&str>,
    name: &str,
    data: &EntryData,
    notes: Option<&str>,
    folder_uuid: Option<&str>,
    history: &[HistoryEntry]
) -> Result<()>
[src]

pub fn remove(&self, access_token: &str, id: &str) -> Result<()>[src]

pub fn folders(&self, access_token: &str) -> Result<Vec<(String, String)>>[src]

pub fn create_folder(&self, access_token: &str, name: &str) -> Result<String>[src]

pub fn exchange_refresh_token(&self, refresh_token: &str) -> Result<String>[src]

pub async fn exchange_refresh_token_async<'_, '_>(
    &'_ self,
    refresh_token: &'_ str
) -> Result<String>
[src]

Trait Implementations

impl Debug for Client[src]

Auto Trait Implementations

impl RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl UnwindSafe for Client

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> From<T> 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>,