pub enum TriggerMethod {
Default,
DoubleBidAsk,
Last,
DoubleLast,
BidAsk,
LastBidAsk,
MidPoint,
Unknown(i32),
}Expand description
Price-condition trigger method.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TriggerMethod
impl Clone for TriggerMethod
Source§fn clone(&self) -> TriggerMethod
fn clone(&self) -> TriggerMethod
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 TriggerMethod
Source§impl Debug for TriggerMethod
impl Debug for TriggerMethod
impl Eq for TriggerMethod
Source§impl Hash for TriggerMethod
impl Hash for TriggerMethod
Source§impl PartialEq for TriggerMethod
impl PartialEq for TriggerMethod
impl StructuralPartialEq for TriggerMethod
Auto Trait Implementations§
impl Freeze for TriggerMethod
impl RefUnwindSafe for TriggerMethod
impl Send for TriggerMethod
impl Sync for TriggerMethod
impl Unpin for TriggerMethod
impl UnsafeUnpin for TriggerMethod
impl UnwindSafe for TriggerMethod
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