pub struct LinkedAccountAppleInput {
pub email: Option<String>,
pub subject: LinkedAccountAppleInputSubject,
pub type_: LinkedAccountAppleInputType,
}Expand description
LinkedAccountAppleInput
JSON schema
{
"title": "Apple",
"type": "object",
"required": [
"subject",
"type"
],
"properties": {
"email": {
"type": "string",
"format": "email"
},
"subject": {
"type": "string",
"pattern": "^[\\x00-\\x7F]{1,256}$"
},
"type": {
"type": "string",
"enum": [
"apple_oauth"
]
}
}
}Fields§
§email: Option<String>§subject: LinkedAccountAppleInputSubject§type_: LinkedAccountAppleInputTypeTrait Implementations§
Source§impl Clone for LinkedAccountAppleInput
impl Clone for LinkedAccountAppleInput
Source§fn clone(&self) -> LinkedAccountAppleInput
fn clone(&self) -> LinkedAccountAppleInput
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 LinkedAccountAppleInput
impl Debug for LinkedAccountAppleInput
Source§impl<'de> Deserialize<'de> for LinkedAccountAppleInput
impl<'de> Deserialize<'de> for LinkedAccountAppleInput
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<&LinkedAccountAppleInput> for LinkedAccountAppleInput
impl From<&LinkedAccountAppleInput> for LinkedAccountAppleInput
Source§fn from(value: &LinkedAccountAppleInput) -> Self
fn from(value: &LinkedAccountAppleInput) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountAppleInput> for LinkedAccountInput
impl From<LinkedAccountAppleInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountAppleInput) -> Self
fn from(value: LinkedAccountAppleInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountAppleInput
impl RefUnwindSafe for LinkedAccountAppleInput
impl Send for LinkedAccountAppleInput
impl Sync for LinkedAccountAppleInput
impl Unpin for LinkedAccountAppleInput
impl UnwindSafe for LinkedAccountAppleInput
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