pub enum Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> {
Show 13 variants
SubmitOrder(A0),
SubmitOrderList(A1),
ModifyOrder(A2),
CancelOrder(A3),
CancelAllOrders(A4),
BatchCancelOrders(A5),
QueryOrder(A6),
QueryAccount(A7),
GenerateOrderStatusReport(A8),
GenerateOrderStatusReports(A9),
GenerateFillReports(A10),
GeneratePositionStatusReports(A11),
GenerateExecutionMassStatus(A12),
}Variants§
SubmitOrder(A0)
SubmitOrderList(A1)
ModifyOrder(A2)
CancelOrder(A3)
CancelAllOrders(A4)
BatchCancelOrders(A5)
QueryOrder(A6)
QueryAccount(A7)
GenerateOrderStatusReport(A8)
GenerateOrderStatusReports(A9)
GenerateFillReports(A10)
GeneratePositionStatusReports(A11)
GenerateExecutionMassStatus(A12)
Auto Trait Implementations§
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> Freeze for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> RefUnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12>where
A0: RefUnwindSafe,
A1: RefUnwindSafe,
A2: RefUnwindSafe,
A3: RefUnwindSafe,
A4: RefUnwindSafe,
A5: RefUnwindSafe,
A6: RefUnwindSafe,
A7: RefUnwindSafe,
A8: RefUnwindSafe,
A9: RefUnwindSafe,
A10: RefUnwindSafe,
A11: RefUnwindSafe,
A12: RefUnwindSafe,
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> Send for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> Sync for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> Unpin for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> UnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12>where
A0: UnwindSafe,
A1: UnwindSafe,
A2: UnwindSafe,
A3: UnwindSafe,
A4: UnwindSafe,
A5: UnwindSafe,
A6: UnwindSafe,
A7: UnwindSafe,
A8: UnwindSafe,
A9: UnwindSafe,
A10: UnwindSafe,
A11: UnwindSafe,
A12: 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
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