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