pub struct DeviceCodeOAuthFlow {
pub device_authorization_url: String,
pub token_url: String,
pub refresh_url: Option<String>,
pub scopes: BTreeMap<String, String>,
}Expand description
Device code flow settings.
Fields§
Device authorization endpoint URL.
token_url: StringToken endpoint URL.
refresh_url: Option<String>Optional refresh endpoint URL.
scopes: BTreeMap<String, String>OAuth scopes and their descriptions.
Trait Implementations§
Source§impl Clone for DeviceCodeOAuthFlow
impl Clone for DeviceCodeOAuthFlow
Source§fn clone(&self) -> DeviceCodeOAuthFlow
fn clone(&self) -> DeviceCodeOAuthFlow
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 DeviceCodeOAuthFlow
impl Debug for DeviceCodeOAuthFlow
Source§impl<'de> Deserialize<'de> for DeviceCodeOAuthFlow
impl<'de> Deserialize<'de> for DeviceCodeOAuthFlow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeviceCodeOAuthFlow
impl RefUnwindSafe for DeviceCodeOAuthFlow
impl Send for DeviceCodeOAuthFlow
impl Sync for DeviceCodeOAuthFlow
impl Unpin for DeviceCodeOAuthFlow
impl UnsafeUnpin for DeviceCodeOAuthFlow
impl UnwindSafe for DeviceCodeOAuthFlow
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