pub struct BodyVerifyVerifyAuthVerifyPost {
pub token: String,
}Expand description
BodyVerifyVerifyAuthVerifyPost
JSON schema
{
"title": "Body_verify_verify_auth_verify_post",
"type": "object",
"required": [
"token"
],
"properties": {
"token": {
"title": "Token",
"type": "string"
}
}
}Fields§
§token: StringImplementations§
Trait Implementations§
Source§impl Clone for BodyVerifyVerifyAuthVerifyPost
impl Clone for BodyVerifyVerifyAuthVerifyPost
Source§fn clone(&self) -> BodyVerifyVerifyAuthVerifyPost
fn clone(&self) -> BodyVerifyVerifyAuthVerifyPost
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<'de> Deserialize<'de> for BodyVerifyVerifyAuthVerifyPost
impl<'de> Deserialize<'de> for BodyVerifyVerifyAuthVerifyPost
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<&BodyVerifyVerifyAuthVerifyPost> for BodyVerifyVerifyAuthVerifyPost
impl From<&BodyVerifyVerifyAuthVerifyPost> for BodyVerifyVerifyAuthVerifyPost
Source§fn from(value: &BodyVerifyVerifyAuthVerifyPost) -> Self
fn from(value: &BodyVerifyVerifyAuthVerifyPost) -> Self
Converts to this type from the input type.
Source§impl From<BodyVerifyVerifyAuthVerifyPost> for BodyVerifyVerifyAuthVerifyPost
impl From<BodyVerifyVerifyAuthVerifyPost> for BodyVerifyVerifyAuthVerifyPost
Source§fn from(value: BodyVerifyVerifyAuthVerifyPost) -> Self
fn from(value: BodyVerifyVerifyAuthVerifyPost) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BodyVerifyVerifyAuthVerifyPost> for BodyVerifyVerifyAuthVerifyPost
impl TryFrom<BodyVerifyVerifyAuthVerifyPost> for BodyVerifyVerifyAuthVerifyPost
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: BodyVerifyVerifyAuthVerifyPost,
) -> Result<Self, ConversionError>
fn try_from( value: BodyVerifyVerifyAuthVerifyPost, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for BodyVerifyVerifyAuthVerifyPost
impl RefUnwindSafe for BodyVerifyVerifyAuthVerifyPost
impl Send for BodyVerifyVerifyAuthVerifyPost
impl Sync for BodyVerifyVerifyAuthVerifyPost
impl Unpin for BodyVerifyVerifyAuthVerifyPost
impl UnwindSafe for BodyVerifyVerifyAuthVerifyPost
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