pub enum DataResponse {
Data(CustomDataResponse),
Instrument(Box<InstrumentResponse>),
Instruments(InstrumentsResponse),
Book(BookResponse),
Quotes(QuotesResponse),
Trades(TradesResponse),
Bars(BarsResponse),
}
Variants§
Data(CustomDataResponse)
Instrument(Box<InstrumentResponse>)
Instruments(InstrumentsResponse)
Book(BookResponse)
Quotes(QuotesResponse)
Trades(TradesResponse)
Bars(BarsResponse)
Implementations§
Source§impl DataResponse
impl DataResponse
pub fn correlation_id(&self) -> &UUID4
Trait Implementations§
Source§impl Clone for DataResponse
impl Clone for DataResponse
Source§fn clone(&self) -> DataResponse
fn clone(&self) -> DataResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DataResponse
impl !RefUnwindSafe for DataResponse
impl Send for DataResponse
impl Sync for DataResponse
impl Unpin for DataResponse
impl !UnwindSafe for DataResponse
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