pub enum Which<A0, A1, A2, A3, A4, A5, A6, A7> {
SubmitOrder(A0),
SubmitOrderList(A1),
ModifyOrder(A2),
CancelOrder(A3),
CancelAllOrders(A4),
BatchCancelOrders(A5),
QueryOrder(A6),
QueryAccount(A7),
}Variants§
SubmitOrder(A0)
SubmitOrderList(A1)
ModifyOrder(A2)
CancelOrder(A3)
CancelAllOrders(A4)
BatchCancelOrders(A5)
QueryOrder(A6)
QueryAccount(A7)
Auto Trait Implementations§
impl<A0, A1, A2, A3, A4, A5, A6, A7> Freeze for Which<A0, A1, A2, A3, A4, A5, A6, A7>
impl<A0, A1, A2, A3, A4, A5, A6, A7> RefUnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7>where
A0: RefUnwindSafe,
A1: RefUnwindSafe,
A2: RefUnwindSafe,
A3: RefUnwindSafe,
A4: RefUnwindSafe,
A5: RefUnwindSafe,
A6: RefUnwindSafe,
A7: RefUnwindSafe,
impl<A0, A1, A2, A3, A4, A5, A6, A7> Send for Which<A0, A1, A2, A3, A4, A5, A6, A7>
impl<A0, A1, A2, A3, A4, A5, A6, A7> Sync for Which<A0, A1, A2, A3, A4, A5, A6, A7>
impl<A0, A1, A2, A3, A4, A5, A6, A7> Unpin for Which<A0, A1, A2, A3, A4, A5, A6, A7>
impl<A0, A1, A2, A3, A4, A5, A6, A7> UnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7>where
A0: UnwindSafe,
A1: UnwindSafe,
A2: UnwindSafe,
A3: UnwindSafe,
A4: UnwindSafe,
A5: UnwindSafe,
A6: UnwindSafe,
A7: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more