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