#[repr(i32)]pub enum OptionOrderType {
Normal = 0,
Sweep = 1,
Cross = 2,
Floor = 4,
}Expand description
订单类型
Variants§
Implementations§
Source§impl OptionOrderType
impl OptionOrderType
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for OptionOrderType
impl Clone for OptionOrderType
Source§fn clone(&self) -> OptionOrderType
fn clone(&self) -> OptionOrderType
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 OptionOrderType
Source§impl Debug for OptionOrderType
impl Debug for OptionOrderType
Source§impl Default for OptionOrderType
impl Default for OptionOrderType
Source§fn default() -> OptionOrderType
fn default() -> OptionOrderType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OptionOrderType
impl<'de> Deserialize<'de> for OptionOrderType
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 OptionOrderType
Source§impl From<OptionOrderType> for i32
impl From<OptionOrderType> for i32
Source§fn from(value: OptionOrderType) -> i32
fn from(value: OptionOrderType) -> i32
Converts to this type from the input type.
Source§impl Hash for OptionOrderType
impl Hash for OptionOrderType
Source§impl Ord for OptionOrderType
impl Ord for OptionOrderType
Source§fn cmp(&self, other: &OptionOrderType) -> Ordering
fn cmp(&self, other: &OptionOrderType) -> 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 OptionOrderType
impl PartialEq for OptionOrderType
Source§fn eq(&self, other: &OptionOrderType) -> bool
fn eq(&self, other: &OptionOrderType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OptionOrderType
impl PartialOrd for OptionOrderType
Source§impl Serialize for OptionOrderType
impl Serialize for OptionOrderType
impl StructuralPartialEq for OptionOrderType
Source§impl TryFrom<i32> for OptionOrderType
impl TryFrom<i32> for OptionOrderType
Source§type Error = UnknownEnumValue
type Error = UnknownEnumValue
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<OptionOrderType, UnknownEnumValue>
fn try_from(value: i32) -> Result<OptionOrderType, UnknownEnumValue>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for OptionOrderType
impl RefUnwindSafe for OptionOrderType
impl Send for OptionOrderType
impl Sync for OptionOrderType
impl Unpin for OptionOrderType
impl UnsafeUnpin for OptionOrderType
impl UnwindSafe for OptionOrderType
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