pub enum Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> {
Show 14 variants
CustomData(A0),
Instrument(A1),
Instruments(A2),
BookDeltas(A3),
BookDepth10(A4),
BookSnapshots(A5),
Quotes(A6),
Trades(A7),
Bars(A8),
MarkPrices(A9),
IndexPrices(A10),
FundingRates(A11),
InstrumentStatus(A12),
InstrumentClose(A13),
}Variants§
CustomData(A0)
Instrument(A1)
Instruments(A2)
BookDeltas(A3)
BookDepth10(A4)
BookSnapshots(A5)
Quotes(A6)
Trades(A7)
Bars(A8)
MarkPrices(A9)
IndexPrices(A10)
FundingRates(A11)
InstrumentStatus(A12)
InstrumentClose(A13)
Auto Trait Implementations§
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> Freeze for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> RefUnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13>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,
A13: RefUnwindSafe,
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> Send for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> Sync for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> Unpin for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13>
impl<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> UnwindSafe for Which<A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13>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,
A13: 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