pub enum OrderTimeInForceResponse {
GTC,
GTT {
expire_time: NaiveDateTime,
},
IOC,
FOK,
}Expand description
This enum represents a response of a time in force
Variants§
Trait Implementations§
Source§impl Clone for OrderTimeInForceResponse
impl Clone for OrderTimeInForceResponse
Source§fn clone(&self) -> OrderTimeInForceResponse
fn clone(&self) -> OrderTimeInForceResponse
Returns a duplicate 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 OrderTimeInForceResponse
impl Debug for OrderTimeInForceResponse
Source§impl<'de> Deserialize<'de> for OrderTimeInForceResponse
impl<'de> Deserialize<'de> for OrderTimeInForceResponse
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
Auto Trait Implementations§
impl Freeze for OrderTimeInForceResponse
impl RefUnwindSafe for OrderTimeInForceResponse
impl Send for OrderTimeInForceResponse
impl Sync for OrderTimeInForceResponse
impl Unpin for OrderTimeInForceResponse
impl UnwindSafe for OrderTimeInForceResponse
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