pub enum Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> {
Quote(A0),
Trade(A1),
Bar(A2),
MarkPrice(A3),
IndexPrice(A4),
InstrumentClose(A5),
InstrumentStatus(A6),
FundingRate(A7),
OrderBookDelta(A8),
OrderBookDeltas(A9),
OrderBookDepth10(A10),
}Variants§
Quote(A0)
Trade(A1)
Bar(A2)
MarkPrice(A3)
IndexPrice(A4)
InstrumentClose(A5)
InstrumentStatus(A6)
FundingRate(A7)
OrderBookDelta(A8)
OrderBookDeltas(A9)
OrderBookDepth10(A10)
Auto Trait Implementations§
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> Freeze for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> RefUnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>where
A0: RefUnwindSafe,
A1: RefUnwindSafe,
A2: RefUnwindSafe,
A3: RefUnwindSafe,
A4: RefUnwindSafe,
A5: RefUnwindSafe,
A6: RefUnwindSafe,
A7: RefUnwindSafe,
A8: RefUnwindSafe,
A9: RefUnwindSafe,
A10: RefUnwindSafe,
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> Send for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> Sync for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> Unpin for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> UnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10>where
A0: UnwindSafe,
A1: UnwindSafe,
A2: UnwindSafe,
A3: UnwindSafe,
A4: UnwindSafe,
A5: UnwindSafe,
A6: UnwindSafe,
A7: UnwindSafe,
A8: UnwindSafe,
A9: UnwindSafe,
A10: 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