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