pub struct ProviderAuthStore { /* private fields */ }Implementations§
Source§impl ProviderAuthStore
impl ProviderAuthStore
pub fn new(config_dir: &Path) -> Self
pub fn path(&self) -> &Path
pub async fn load(&self) -> Result<ProviderAuthProfilesData>
pub async fn upsert_profile( &self, profile: ProviderAuthProfile, set_active: bool, ) -> Result<()>
pub async fn remove_profile(&self, profile_id: &str) -> Result<bool>
pub async fn set_active_profile( &self, provider: &str, profile_id: &str, ) -> Result<()>
pub async fn clear_active_profile(&self, provider: &str) -> Result<()>
pub async fn update_profile<F>( &self, profile_id: &str, updater: F, ) -> Result<ProviderAuthProfile>
Trait Implementations§
Source§impl Clone for ProviderAuthStore
impl Clone for ProviderAuthStore
Source§fn clone(&self) -> ProviderAuthStore
fn clone(&self) -> ProviderAuthStore
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 ProviderAuthStore
impl RefUnwindSafe for ProviderAuthStore
impl Send for ProviderAuthStore
impl Sync for ProviderAuthStore
impl Unpin for ProviderAuthStore
impl UnsafeUnpin for ProviderAuthStore
impl UnwindSafe for ProviderAuthStore
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> 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