pub struct KrakenEmbedStartIdentityInfoFullName {
pub first_name: String,
pub last_name: String,
pub middle_name: Option<String>,
}Expand description
KrakenEmbedStartIdentityInfoFullName
JSON schema
{
"type": "object",
"required": [
"first_name",
"last_name"
],
"properties": {
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"middle_name": {
"type": "string"
}
}
}Fields§
§first_name: String§last_name: String§middle_name: Option<String>Trait Implementations§
Source§impl Clone for KrakenEmbedStartIdentityInfoFullName
impl Clone for KrakenEmbedStartIdentityInfoFullName
Source§fn clone(&self) -> KrakenEmbedStartIdentityInfoFullName
fn clone(&self) -> KrakenEmbedStartIdentityInfoFullName
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<'de> Deserialize<'de> for KrakenEmbedStartIdentityInfoFullName
impl<'de> Deserialize<'de> for KrakenEmbedStartIdentityInfoFullName
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<&KrakenEmbedStartIdentityInfoFullName> for KrakenEmbedStartIdentityInfoFullName
impl From<&KrakenEmbedStartIdentityInfoFullName> for KrakenEmbedStartIdentityInfoFullName
Source§fn from(value: &KrakenEmbedStartIdentityInfoFullName) -> Self
fn from(value: &KrakenEmbedStartIdentityInfoFullName) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedStartIdentityInfoFullName
impl RefUnwindSafe for KrakenEmbedStartIdentityInfoFullName
impl Send for KrakenEmbedStartIdentityInfoFullName
impl Sync for KrakenEmbedStartIdentityInfoFullName
impl Unpin for KrakenEmbedStartIdentityInfoFullName
impl UnsafeUnpin for KrakenEmbedStartIdentityInfoFullName
impl UnwindSafe for KrakenEmbedStartIdentityInfoFullName
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