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