pub enum FeedbackVerificationKind {
Anonymous,
WalletHeader,
ComposeKey,
}Expand description
FeedbackVerificationKind
JSON schema
{
"type": "string",
"enum": [
"anonymous",
"wallet_header",
"compose_key"
]
}Variants§
Trait Implementations§
Source§impl Clone for FeedbackVerificationKind
impl Clone for FeedbackVerificationKind
Source§fn clone(&self) -> FeedbackVerificationKind
fn clone(&self) -> FeedbackVerificationKind
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 FeedbackVerificationKind
Source§impl Debug for FeedbackVerificationKind
impl Debug for FeedbackVerificationKind
Source§impl<'de> Deserialize<'de> for FeedbackVerificationKind
impl<'de> Deserialize<'de> for FeedbackVerificationKind
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 Display for FeedbackVerificationKind
impl Display for FeedbackVerificationKind
impl Eq for FeedbackVerificationKind
Source§impl FromStr for FeedbackVerificationKind
impl FromStr for FeedbackVerificationKind
Source§impl Hash for FeedbackVerificationKind
impl Hash for FeedbackVerificationKind
Source§impl Ord for FeedbackVerificationKind
impl Ord for FeedbackVerificationKind
Source§fn cmp(&self, other: &FeedbackVerificationKind) -> Ordering
fn cmp(&self, other: &FeedbackVerificationKind) -> 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 FeedbackVerificationKind
impl PartialEq for FeedbackVerificationKind
Source§fn eq(&self, other: &FeedbackVerificationKind) -> bool
fn eq(&self, other: &FeedbackVerificationKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FeedbackVerificationKind
impl PartialOrd for FeedbackVerificationKind
Source§impl Serialize for FeedbackVerificationKind
impl Serialize for FeedbackVerificationKind
impl StructuralPartialEq for FeedbackVerificationKind
Source§impl TryFrom<&String> for FeedbackVerificationKind
impl TryFrom<&String> for FeedbackVerificationKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for FeedbackVerificationKind
impl TryFrom<&str> for FeedbackVerificationKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for FeedbackVerificationKind
impl TryFrom<String> for FeedbackVerificationKind
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for FeedbackVerificationKind
impl RefUnwindSafe for FeedbackVerificationKind
impl Send for FeedbackVerificationKind
impl Sync for FeedbackVerificationKind
impl Unpin for FeedbackVerificationKind
impl UnsafeUnpin for FeedbackVerificationKind
impl UnwindSafe for FeedbackVerificationKind
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