pub struct PkceChallenge { /* private fields */ }Expand description
PKCE challenge pair containing verifier and challenge strings.
Custom Debug redacts the code_verifier — it is a secret that must
never leave the client. The code_challenge and method are safe to
display (they are sent to the authorization server in the URL).
Trait Implementations§
Source§impl Clone for PkceChallenge
impl Clone for PkceChallenge
Source§fn clone(&self) -> PkceChallenge
fn clone(&self) -> PkceChallenge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PkceChallenge
impl RefUnwindSafe for PkceChallenge
impl Send for PkceChallenge
impl Sync for PkceChallenge
impl Unpin for PkceChallenge
impl UnsafeUnpin for PkceChallenge
impl UnwindSafe for PkceChallenge
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