pub struct DeviceCodeOAuthFlow {
pub device_authorization_url: String,
pub token_url: String,
pub refresh_url: Option<String>,
pub scopes: HashMap<String, String>,
}Fields§
§token_url: String§refresh_url: Option<String>§scopes: HashMap<String, String>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
Source§impl PartialEq for DeviceCodeOAuthFlow
impl PartialEq for DeviceCodeOAuthFlow
Source§impl Serialize for DeviceCodeOAuthFlow
impl Serialize for DeviceCodeOAuthFlow
impl StructuralPartialEq for DeviceCodeOAuthFlow
Auto Trait Implementations§
impl Freeze for DeviceCodeOAuthFlow
impl RefUnwindSafe for DeviceCodeOAuthFlow
impl Send for DeviceCodeOAuthFlow
impl Sync for DeviceCodeOAuthFlow
impl Unpin 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