pub struct LinkedAccountPhoneInput {
pub number: String,
pub type_: LinkedAccountPhoneInputType,
}Expand description
LinkedAccountPhoneInput
JSON schema
{
"title": "Phone",
"type": "object",
"required": [
"number",
"type"
],
"properties": {
"number": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"phone"
]
}
}
}Fields§
§number: String§type_: LinkedAccountPhoneInputTypeTrait Implementations§
Source§impl Clone for LinkedAccountPhoneInput
impl Clone for LinkedAccountPhoneInput
Source§fn clone(&self) -> LinkedAccountPhoneInput
fn clone(&self) -> LinkedAccountPhoneInput
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 LinkedAccountPhoneInput
impl Debug for LinkedAccountPhoneInput
Source§impl<'de> Deserialize<'de> for LinkedAccountPhoneInput
impl<'de> Deserialize<'de> for LinkedAccountPhoneInput
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountPhoneInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountPhoneInput, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LinkedAccountPhoneInput> for LinkedAccountPhoneInput
impl From<&LinkedAccountPhoneInput> for LinkedAccountPhoneInput
Source§fn from(value: &LinkedAccountPhoneInput) -> LinkedAccountPhoneInput
fn from(value: &LinkedAccountPhoneInput) -> LinkedAccountPhoneInput
Converts to this type from the input type.
Source§impl From<LinkedAccountPhoneInput> for LinkedAccountInput
impl From<LinkedAccountPhoneInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountPhoneInput) -> LinkedAccountInput
fn from(value: LinkedAccountPhoneInput) -> LinkedAccountInput
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountPhoneInput
impl Serialize for LinkedAccountPhoneInput
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for LinkedAccountPhoneInput
impl RefUnwindSafe for LinkedAccountPhoneInput
impl Send for LinkedAccountPhoneInput
impl Sync for LinkedAccountPhoneInput
impl Unpin for LinkedAccountPhoneInput
impl UnwindSafe for LinkedAccountPhoneInput
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