pub struct OAuth2ImplicitFlow {
pub authorization_url: String,
pub refresh_url: Option<String>,
pub scopes: IndexMap<String, String>,
}Expand description
OAuth2 implicit flow configuration.
Fields§
Authorization URL
refresh_url: Option<String>Refresh URL (optional)
scopes: IndexMap<String, String>Available scopes
Trait Implementations§
Source§impl Clone for OAuth2ImplicitFlow
impl Clone for OAuth2ImplicitFlow
Source§fn clone(&self) -> OAuth2ImplicitFlow
fn clone(&self) -> OAuth2ImplicitFlow
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 OAuth2ImplicitFlow
impl Debug for OAuth2ImplicitFlow
Source§impl PartialEq for OAuth2ImplicitFlow
impl PartialEq for OAuth2ImplicitFlow
impl StructuralPartialEq for OAuth2ImplicitFlow
Auto Trait Implementations§
impl Freeze for OAuth2ImplicitFlow
impl RefUnwindSafe for OAuth2ImplicitFlow
impl Send for OAuth2ImplicitFlow
impl Sync for OAuth2ImplicitFlow
impl Unpin for OAuth2ImplicitFlow
impl UnwindSafe for OAuth2ImplicitFlow
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