Struct spotify_rs::auth::AuthCodeGrantPKCEFlow
source · pub struct AuthCodeGrantPKCEFlow {
pub client_id: String,
}Expand description
Authorisation code flow with PKCE is the recommended authorization flow if you’re implementing authorization in any other type of application where the client secret can’t be safely stored.
Fields§
§client_id: StringTrait Implementations§
source§impl AuthFlow for AuthCodeGrantPKCEFlow
impl AuthFlow for AuthCodeGrantPKCEFlow
source§impl Clone for AuthCodeGrantPKCEFlow
impl Clone for AuthCodeGrantPKCEFlow
source§fn clone(&self) -> AuthCodeGrantPKCEFlow
fn clone(&self) -> AuthCodeGrantPKCEFlow
Returns a copy 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 AuthCodeGrantPKCEFlow
impl Debug for AuthCodeGrantPKCEFlow
impl Authorised for AuthCodeGrantPKCEFlow
Auto Trait Implementations§
impl RefUnwindSafe for AuthCodeGrantPKCEFlow
impl Send for AuthCodeGrantPKCEFlow
impl Sync for AuthCodeGrantPKCEFlow
impl Unpin for AuthCodeGrantPKCEFlow
impl UnwindSafe for AuthCodeGrantPKCEFlow
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