pub struct GetOpenIdTokenForDeveloperIdentityResponse {
pub identity_id: Option<String>,
pub token: Option<String>,
}Expand description
Returned in response to a successful GetOpenIdTokenForDeveloperIdentity request.
Fields§
§identity_id: Option<String>A unique identifier in the format REGION:GUID.
token: Option<String>An OpenID token.
Trait Implementations§
Source§impl Clone for GetOpenIdTokenForDeveloperIdentityResponse
impl Clone for GetOpenIdTokenForDeveloperIdentityResponse
Source§fn clone(&self) -> GetOpenIdTokenForDeveloperIdentityResponse
fn clone(&self) -> GetOpenIdTokenForDeveloperIdentityResponse
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 GetOpenIdTokenForDeveloperIdentityResponse
impl Default for GetOpenIdTokenForDeveloperIdentityResponse
Source§fn default() -> GetOpenIdTokenForDeveloperIdentityResponse
fn default() -> GetOpenIdTokenForDeveloperIdentityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetOpenIdTokenForDeveloperIdentityResponse
impl<'de> Deserialize<'de> for GetOpenIdTokenForDeveloperIdentityResponse
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 GetOpenIdTokenForDeveloperIdentityResponse
impl PartialEq for GetOpenIdTokenForDeveloperIdentityResponse
Source§fn eq(&self, other: &GetOpenIdTokenForDeveloperIdentityResponse) -> bool
fn eq(&self, other: &GetOpenIdTokenForDeveloperIdentityResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetOpenIdTokenForDeveloperIdentityResponse
Auto Trait Implementations§
impl Freeze for GetOpenIdTokenForDeveloperIdentityResponse
impl RefUnwindSafe for GetOpenIdTokenForDeveloperIdentityResponse
impl Send for GetOpenIdTokenForDeveloperIdentityResponse
impl Sync for GetOpenIdTokenForDeveloperIdentityResponse
impl Unpin for GetOpenIdTokenForDeveloperIdentityResponse
impl UnwindSafe for GetOpenIdTokenForDeveloperIdentityResponse
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