pub struct GetMeResponseIdentitiesItem {
pub id: String,
pub provider_display_name: String,
pub provider_instance_id: String,
pub provider_kind: String,
pub username: String,
}Expand description
GetMeResponseIdentitiesItem
JSON schema
{
"type": "object",
"required": [
"id",
"providerDisplayName",
"providerInstanceId",
"providerKind",
"username"
],
"properties": {
"id": {
"type": "string"
},
"providerDisplayName": {
"type": "string"
},
"providerInstanceId": {
"type": "string"
},
"providerKind": {
"type": "string"
},
"username": {
"type": "string"
}
}
}Fields§
§id: String§provider_display_name: String§provider_instance_id: String§provider_kind: String§username: StringImplementations§
Trait Implementations§
Source§impl Clone for GetMeResponseIdentitiesItem
impl Clone for GetMeResponseIdentitiesItem
Source§fn clone(&self) -> GetMeResponseIdentitiesItem
fn clone(&self) -> GetMeResponseIdentitiesItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetMeResponseIdentitiesItem
impl Debug for GetMeResponseIdentitiesItem
Source§impl<'de> Deserialize<'de> for GetMeResponseIdentitiesItem
impl<'de> Deserialize<'de> for GetMeResponseIdentitiesItem
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 From<&GetMeResponseIdentitiesItem> for GetMeResponseIdentitiesItem
impl From<&GetMeResponseIdentitiesItem> for GetMeResponseIdentitiesItem
Source§fn from(value: &GetMeResponseIdentitiesItem) -> Self
fn from(value: &GetMeResponseIdentitiesItem) -> Self
Converts to this type from the input type.
Source§impl From<GetMeResponseIdentitiesItem> for GetMeResponseIdentitiesItem
impl From<GetMeResponseIdentitiesItem> for GetMeResponseIdentitiesItem
Source§fn from(value: GetMeResponseIdentitiesItem) -> Self
fn from(value: GetMeResponseIdentitiesItem) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetMeResponseIdentitiesItem> for GetMeResponseIdentitiesItem
impl TryFrom<GetMeResponseIdentitiesItem> for GetMeResponseIdentitiesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: GetMeResponseIdentitiesItem) -> Result<Self, ConversionError>
fn try_from(value: GetMeResponseIdentitiesItem) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetMeResponseIdentitiesItem
impl RefUnwindSafe for GetMeResponseIdentitiesItem
impl Send for GetMeResponseIdentitiesItem
impl Sync for GetMeResponseIdentitiesItem
impl Unpin for GetMeResponseIdentitiesItem
impl UnsafeUnpin for GetMeResponseIdentitiesItem
impl UnwindSafe for GetMeResponseIdentitiesItem
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