pub struct PkceCodePair {
pub verifier: String,
pub challenge: String,
pub challenge_method: PkceChallengeMethod,
}Fields§
§verifier: String§challenge: String§challenge_method: PkceChallengeMethodTrait Implementations§
Source§impl Clone for PkceCodePair
impl Clone for PkceCodePair
Source§fn clone(&self) -> PkceCodePair
fn clone(&self) -> PkceCodePair
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 PkceCodePair
impl Debug for PkceCodePair
Source§impl PartialEq for PkceCodePair
impl PartialEq for PkceCodePair
impl Eq for PkceCodePair
impl StructuralPartialEq for PkceCodePair
Auto Trait Implementations§
impl Freeze for PkceCodePair
impl RefUnwindSafe for PkceCodePair
impl Send for PkceCodePair
impl Sync for PkceCodePair
impl Unpin for PkceCodePair
impl UnsafeUnpin for PkceCodePair
impl UnwindSafe for PkceCodePair
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