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<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<&LinkedAccountPhoneInput> for LinkedAccountPhoneInput
impl From<&LinkedAccountPhoneInput> for LinkedAccountPhoneInput
Source§fn from(value: &LinkedAccountPhoneInput) -> Self
fn from(value: &LinkedAccountPhoneInput) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountPhoneInput> for LinkedAccountInput
impl From<LinkedAccountPhoneInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountPhoneInput) -> Self
fn from(value: LinkedAccountPhoneInput) -> Self
Converts to this type from the input type.
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