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