pub enum B2ClientStatus {
Authed,
KeyExpired,
}Variants§
Authed
Default state, and should be the only state if nothing else went wrong.
KeyExpired
The provided key to the client has expired, cannot re-auth, please re-create the client.
Trait Implementations§
Source§impl Clone for B2ClientStatus
impl Clone for B2ClientStatus
Source§fn clone(&self) -> B2ClientStatus
fn clone(&self) -> B2ClientStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for B2ClientStatus
impl RefUnwindSafe for B2ClientStatus
impl Send for B2ClientStatus
impl Sync for B2ClientStatus
impl Unpin for B2ClientStatus
impl UnwindSafe for B2ClientStatus
Blanket Implementations§
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