pub struct DeviceAuthorizationRequest {
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub scope: Option<String>,
pub tenant_id: Option<Uuid>,
}Expand description
DeviceAuthorizationRequest :
Fields§
§client_id: Option<String>§client_secret: Option<String>§scope: Option<String>§tenant_id: Option<Uuid>Implementations§
Source§impl DeviceAuthorizationRequest
impl DeviceAuthorizationRequest
Sourcepub fn new() -> DeviceAuthorizationRequest
pub fn new() -> DeviceAuthorizationRequest
Trait Implementations§
Source§impl Clone for DeviceAuthorizationRequest
impl Clone for DeviceAuthorizationRequest
Source§fn clone(&self) -> DeviceAuthorizationRequest
fn clone(&self) -> DeviceAuthorizationRequest
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 DeviceAuthorizationRequest
impl Debug for DeviceAuthorizationRequest
Source§impl Default for DeviceAuthorizationRequest
impl Default for DeviceAuthorizationRequest
Source§fn default() -> DeviceAuthorizationRequest
fn default() -> DeviceAuthorizationRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeviceAuthorizationRequest
impl<'de> Deserialize<'de> for DeviceAuthorizationRequest
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
impl StructuralPartialEq for DeviceAuthorizationRequest
Auto Trait Implementations§
impl Freeze for DeviceAuthorizationRequest
impl RefUnwindSafe for DeviceAuthorizationRequest
impl Send for DeviceAuthorizationRequest
impl Sync for DeviceAuthorizationRequest
impl Unpin for DeviceAuthorizationRequest
impl UnwindSafe for DeviceAuthorizationRequest
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