pub struct RetrieveUserCodeUsingApiKeyRequest {
pub tenant_id: Option<Uuid>,
pub user_code: Option<String>,
}Expand description
RetrieveUserCodeUsingApiKeyRequest : The request object for retrieving a user code that is part of an in-progress Device Authorization Grant using an API key
Fields§
§tenant_id: Option<Uuid>§user_code: Option<String>Implementations§
Source§impl RetrieveUserCodeUsingApiKeyRequest
impl RetrieveUserCodeUsingApiKeyRequest
Sourcepub fn new() -> RetrieveUserCodeUsingApiKeyRequest
pub fn new() -> RetrieveUserCodeUsingApiKeyRequest
The request object for retrieving a user code that is part of an in-progress Device Authorization Grant using an API key
Trait Implementations§
Source§impl Clone for RetrieveUserCodeUsingApiKeyRequest
impl Clone for RetrieveUserCodeUsingApiKeyRequest
Source§fn clone(&self) -> RetrieveUserCodeUsingApiKeyRequest
fn clone(&self) -> RetrieveUserCodeUsingApiKeyRequest
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 Default for RetrieveUserCodeUsingApiKeyRequest
impl Default for RetrieveUserCodeUsingApiKeyRequest
Source§fn default() -> RetrieveUserCodeUsingApiKeyRequest
fn default() -> RetrieveUserCodeUsingApiKeyRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetrieveUserCodeUsingApiKeyRequest
impl<'de> Deserialize<'de> for RetrieveUserCodeUsingApiKeyRequest
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 RetrieveUserCodeUsingApiKeyRequest
impl PartialEq for RetrieveUserCodeUsingApiKeyRequest
Source§fn eq(&self, other: &RetrieveUserCodeUsingApiKeyRequest) -> bool
fn eq(&self, other: &RetrieveUserCodeUsingApiKeyRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RetrieveUserCodeUsingApiKeyRequest
Auto Trait Implementations§
impl Freeze for RetrieveUserCodeUsingApiKeyRequest
impl RefUnwindSafe for RetrieveUserCodeUsingApiKeyRequest
impl Send for RetrieveUserCodeUsingApiKeyRequest
impl Sync for RetrieveUserCodeUsingApiKeyRequest
impl Unpin for RetrieveUserCodeUsingApiKeyRequest
impl UnwindSafe for RetrieveUserCodeUsingApiKeyRequest
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