#[non_exhaustive]pub enum ConvertMode {
Standard,
LargeOrderVip,
}Expand description
Convert mode used by currency-pair, quote, and trade requests.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for ConvertMode
impl Clone for ConvertMode
Source§fn clone(&self) -> ConvertMode
fn clone(&self) -> ConvertMode
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 ConvertMode
Source§impl Debug for ConvertMode
impl Debug for ConvertMode
impl Eq for ConvertMode
Source§impl Hash for ConvertMode
impl Hash for ConvertMode
Source§impl PartialEq for ConvertMode
impl PartialEq for ConvertMode
Source§impl Serialize for ConvertMode
impl Serialize for ConvertMode
impl StructuralPartialEq for ConvertMode
Auto Trait Implementations§
impl Freeze for ConvertMode
impl RefUnwindSafe for ConvertMode
impl Send for ConvertMode
impl Sync for ConvertMode
impl Unpin for ConvertMode
impl UnsafeUnpin for ConvertMode
impl UnwindSafe for ConvertMode
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