pub enum CreateLinkAuthIntentResponseData {
Created(LinkAuthIntentCreated),
NoAccount(LinkAuthIntentNoAccount),
}Expand description
CreateLinkAuthIntentResponseData
JSON schema
{
"oneOf": [
{
"$ref": "#/components/schemas/LinkAuthIntentCreated"
},
{
"$ref": "#/components/schemas/LinkAuthIntentNoAccount"
}
]
}Variants§
Created(LinkAuthIntentCreated)
NoAccount(LinkAuthIntentNoAccount)
Trait Implementations§
Source§impl Clone for CreateLinkAuthIntentResponseData
impl Clone for CreateLinkAuthIntentResponseData
Source§fn clone(&self) -> CreateLinkAuthIntentResponseData
fn clone(&self) -> CreateLinkAuthIntentResponseData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateLinkAuthIntentResponseData
impl<'de> Deserialize<'de> for CreateLinkAuthIntentResponseData
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<&CreateLinkAuthIntentResponseData> for CreateLinkAuthIntentResponseData
impl From<&CreateLinkAuthIntentResponseData> for CreateLinkAuthIntentResponseData
Source§fn from(value: &CreateLinkAuthIntentResponseData) -> Self
fn from(value: &CreateLinkAuthIntentResponseData) -> Self
Converts to this type from the input type.
Source§impl From<LinkAuthIntentCreated> for CreateLinkAuthIntentResponseData
impl From<LinkAuthIntentCreated> for CreateLinkAuthIntentResponseData
Source§fn from(value: LinkAuthIntentCreated) -> Self
fn from(value: LinkAuthIntentCreated) -> Self
Converts to this type from the input type.
Source§impl From<LinkAuthIntentNoAccount> for CreateLinkAuthIntentResponseData
impl From<LinkAuthIntentNoAccount> for CreateLinkAuthIntentResponseData
Source§fn from(value: LinkAuthIntentNoAccount) -> Self
fn from(value: LinkAuthIntentNoAccount) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CreateLinkAuthIntentResponseData
impl RefUnwindSafe for CreateLinkAuthIntentResponseData
impl Send for CreateLinkAuthIntentResponseData
impl Sync for CreateLinkAuthIntentResponseData
impl Unpin for CreateLinkAuthIntentResponseData
impl UnsafeUnpin for CreateLinkAuthIntentResponseData
impl UnwindSafe for CreateLinkAuthIntentResponseData
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