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