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