pub enum OAuthStateStrategy {
Cookie,
Database,
}Expand description
Strategy for storing OAuth state during the authorization flow.
Variants§
Cookie
Stateless: store state in an encrypted cookie (default).
Database
Stateful: store state in the verification table.
Trait Implementations§
Source§impl Clone for OAuthStateStrategy
impl Clone for OAuthStateStrategy
Source§fn clone(&self) -> OAuthStateStrategy
fn clone(&self) -> OAuthStateStrategy
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 moreSource§impl Debug for OAuthStateStrategy
impl Debug for OAuthStateStrategy
Source§impl Default for OAuthStateStrategy
impl Default for OAuthStateStrategy
Source§fn default() -> OAuthStateStrategy
fn default() -> OAuthStateStrategy
Returns the “default value” for a type. Read more
Source§impl PartialEq for OAuthStateStrategy
impl PartialEq for OAuthStateStrategy
impl Eq for OAuthStateStrategy
impl StructuralPartialEq for OAuthStateStrategy
Auto Trait Implementations§
impl Freeze for OAuthStateStrategy
impl RefUnwindSafe for OAuthStateStrategy
impl Send for OAuthStateStrategy
impl Sync for OAuthStateStrategy
impl Unpin for OAuthStateStrategy
impl UnsafeUnpin for OAuthStateStrategy
impl UnwindSafe for OAuthStateStrategy
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.