pub enum OrderDelayUnit {
Seconds,
TenthsOfASecond,
HundredthsOfASecond,
Milliseconds,
Microseconds,
Nanoseconds,
Minutes,
Hours,
Days,
Weeks,
Months,
Years,
}
Variants§
Seconds
Value “0”
TenthsOfASecond
Value “1”
HundredthsOfASecond
Value “2”
Milliseconds
Value “3”
Microseconds
Value “4”
Nanoseconds
Value “5”
Minutes
Value “10”
Hours
Value “11”
Days
Value “12”
Weeks
Value “13”
Months
Value “14”
Years
Value “15”
Implementations§
Source§impl OrderDelayUnit
impl OrderDelayUnit
pub const fn from_bytes(input: &[u8]) -> Option<OrderDelayUnit>
pub const fn from_fix_str(input: &FixStr) -> Option<OrderDelayUnit>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for OrderDelayUnit
impl Clone for OrderDelayUnit
Source§fn clone(&self) -> OrderDelayUnit
fn clone(&self) -> OrderDelayUnit
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OrderDelayUnit
impl Debug for OrderDelayUnit
Source§impl Default for OrderDelayUnit
impl Default for OrderDelayUnit
Source§fn default() -> OrderDelayUnit
fn default() -> OrderDelayUnit
Returns the “default value” for a type. Read more
Source§impl From<OrderDelayUnit> for &'static [u8]
impl From<OrderDelayUnit> for &'static [u8]
Source§impl PartialEq for OrderDelayUnit
impl PartialEq for OrderDelayUnit
Source§impl ToFixString for OrderDelayUnit
impl ToFixString for OrderDelayUnit
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for OrderDelayUnit
impl TryFrom<i64> for OrderDelayUnit
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<OrderDelayUnit, ParseRejectReason>
fn try_from(input: Int) -> Result<OrderDelayUnit, ParseRejectReason>
Performs the conversion.
impl Copy for OrderDelayUnit
impl Eq for OrderDelayUnit
impl StructuralPartialEq for OrderDelayUnit
Auto Trait Implementations§
impl Freeze for OrderDelayUnit
impl RefUnwindSafe for OrderDelayUnit
impl Send for OrderDelayUnit
impl Sync for OrderDelayUnit
impl Unpin for OrderDelayUnit
impl UnwindSafe for OrderDelayUnit
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