Struct steam_vent::auth::NullGuardDataStore
source · pub struct NullGuardDataStore;Expand description
Don’t store guard data
Trait Implementations§
source§impl GuardDataStore for NullGuardDataStore
impl GuardDataStore for NullGuardDataStore
type Err = Infallible
fn store<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_account: &'life1 str,
_machine_token: String
) -> Pin<Box<dyn Future<Output = Result<(), Self::Err>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn load<'life0, 'life1, 'async_trait>(
&'life0 mut self,
_account: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Option<String>, Self::Err>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for NullGuardDataStore
impl RefUnwindSafe for NullGuardDataStore
impl Send for NullGuardDataStore
impl Sync for NullGuardDataStore
impl Unpin for NullGuardDataStore
impl UnwindSafe for NullGuardDataStore
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