pub enum LinkAuthIntentNoAccountStatus {
NoAccount,
}Expand description
LinkAuthIntentNoAccountStatus
JSON schema
{
"type": "string",
"enum": [
"no_account"
]
}Variants§
NoAccount
Trait Implementations§
Source§impl Clone for LinkAuthIntentNoAccountStatus
impl Clone for LinkAuthIntentNoAccountStatus
Source§fn clone(&self) -> LinkAuthIntentNoAccountStatus
fn clone(&self) -> LinkAuthIntentNoAccountStatus
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 moreimpl Copy for LinkAuthIntentNoAccountStatus
Source§impl<'de> Deserialize<'de> for LinkAuthIntentNoAccountStatus
impl<'de> Deserialize<'de> for LinkAuthIntentNoAccountStatus
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
impl Eq for LinkAuthIntentNoAccountStatus
Source§impl From<&LinkAuthIntentNoAccountStatus> for LinkAuthIntentNoAccountStatus
impl From<&LinkAuthIntentNoAccountStatus> for LinkAuthIntentNoAccountStatus
Source§fn from(value: &LinkAuthIntentNoAccountStatus) -> Self
fn from(value: &LinkAuthIntentNoAccountStatus) -> Self
Converts to this type from the input type.
Source§impl Hash for LinkAuthIntentNoAccountStatus
impl Hash for LinkAuthIntentNoAccountStatus
Source§impl Ord for LinkAuthIntentNoAccountStatus
impl Ord for LinkAuthIntentNoAccountStatus
Source§fn cmp(&self, other: &LinkAuthIntentNoAccountStatus) -> Ordering
fn cmp(&self, other: &LinkAuthIntentNoAccountStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LinkAuthIntentNoAccountStatus
impl PartialEq for LinkAuthIntentNoAccountStatus
Source§fn eq(&self, other: &LinkAuthIntentNoAccountStatus) -> bool
fn eq(&self, other: &LinkAuthIntentNoAccountStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for LinkAuthIntentNoAccountStatus
impl PartialOrd for LinkAuthIntentNoAccountStatus
impl StructuralPartialEq for LinkAuthIntentNoAccountStatus
Source§impl TryFrom<&String> for LinkAuthIntentNoAccountStatus
impl TryFrom<&String> for LinkAuthIntentNoAccountStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for LinkAuthIntentNoAccountStatus
impl TryFrom<&str> for LinkAuthIntentNoAccountStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for LinkAuthIntentNoAccountStatus
impl TryFrom<String> for LinkAuthIntentNoAccountStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for LinkAuthIntentNoAccountStatus
impl RefUnwindSafe for LinkAuthIntentNoAccountStatus
impl Send for LinkAuthIntentNoAccountStatus
impl Sync for LinkAuthIntentNoAccountStatus
impl Unpin for LinkAuthIntentNoAccountStatus
impl UnsafeUnpin for LinkAuthIntentNoAccountStatus
impl UnwindSafe for LinkAuthIntentNoAccountStatus
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