pub enum PkceCodeChallengeMethod {
S256,
}Expand description
Supported PKCE challenge methods surfaced via AuthorizationSession.
Variants§
S256
SHA-256 based PKCE (RFC 7636 S256).
Implementations§
Trait Implementations§
Source§impl Clone for PkceCodeChallengeMethod
impl Clone for PkceCodeChallengeMethod
Source§fn clone(&self) -> PkceCodeChallengeMethod
fn clone(&self) -> PkceCodeChallengeMethod
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 PkceCodeChallengeMethod
impl Debug for PkceCodeChallengeMethod
Source§impl PartialEq for PkceCodeChallengeMethod
impl PartialEq for PkceCodeChallengeMethod
impl Copy for PkceCodeChallengeMethod
impl Eq for PkceCodeChallengeMethod
impl StructuralPartialEq for PkceCodeChallengeMethod
Auto Trait Implementations§
impl Freeze for PkceCodeChallengeMethod
impl RefUnwindSafe for PkceCodeChallengeMethod
impl Send for PkceCodeChallengeMethod
impl Sync for PkceCodeChallengeMethod
impl Unpin for PkceCodeChallengeMethod
impl UnwindSafe for PkceCodeChallengeMethod
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.