pub struct Client {
http: Client,
}Expand description
The 1Password client. Holds the injected HTTP transport so tests can point it at a mock host.
Fields§
§http: ClientImplementations§
Source§impl Client
impl Client
Sourcepub fn new(http: Client) -> Client
pub fn new(http: Client) -> Client
Creates a client over the given HTTP transport. The caller owns TLS configuration; in the
SDK that means bitwarden_api_base::new_http_client() or the client’s own pooled instance.
Sourcepub async fn download_all_vaults(
&self,
credentials: &Credentials,
ui: &dyn TwoFactorUi,
) -> Result<Vec<Vault>, OnePasswordError>
pub async fn download_all_vaults( &self, credentials: &Credentials, ui: &dyn TwoFactorUi, ) -> Result<Vec<Vault>, OnePasswordError>
Logs in and downloads every vault the account can open, driving 2FA through ui when
required.
An import takes the whole account, so there is no vault selection.
Sourceasync fn login(
&self,
credentials: &Credentials,
account_key: &AccountKey,
ui: &dyn TwoFactorUi,
) -> Result<Session, OnePasswordError>
async fn login( &self, credentials: &Credentials, account_key: &AccountKey, ui: &dyn TwoFactorUi, ) -> Result<Session, OnePasswordError>
Runs the login sequence, retrying the whole thing when the server rejects a TOTP code.
A rejected code makes 1Password invalidate the session, so a wrong code restarts from scratch, up to three times.
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl !UnwindSafe for Client
impl Freeze for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl UnsafeUnpin for Client
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
Create a new handle for an Arc value Read more
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
Clone a handle Read more
§unsafe fn consume_handle(handle: Handle) -> Arc<T> ⓘ
unsafe fn consume_handle(handle: Handle) -> Arc<T> ⓘ
Consume a handle, getting back the initial
Arc<> Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more