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