Enum dbn::RecordEnum

source ·
pub enum RecordEnum {
Show 13 variants Mbo(MboMsg), Trade(TradeMsg), Mbp1(Mbp1Msg), Mbp10(Mbp10Msg), Ohlcv(OhlcvMsg), Status(StatusMsg), InstrumentDef(InstrumentDefMsg), Imbalance(ImbalanceMsg), Stat(StatMsg), Error(ErrorMsg), SymbolMapping(SymbolMappingMsg), System(SystemMsg), Cbbo(CbboMsg),
}
Expand description

An owned DBN record type of flexible type.

Variants§

§

Mbo(MboMsg)

An market-by-order message.

§

Trade(TradeMsg)

A trade message.

§

Mbp1(Mbp1Msg)

A market-by-price message with a book depth of 1.

§

Mbp10(Mbp10Msg)

A market-by-price message with a book depth of 10.

§

Ohlcv(OhlcvMsg)

An open, high, low, close, and volume message.

§

Status(StatusMsg)

A trading status message.

§

InstrumentDef(InstrumentDefMsg)

An instrument definition message.

§

Imbalance(ImbalanceMsg)

An auction imbalance message.

§

Stat(StatMsg)

A publisher statistic message.

§

Error(ErrorMsg)

An error message from the Databento Live Subscription Gateway (LSG).

§

SymbolMapping(SymbolMappingMsg)

A symbol mapping message.

§

System(SystemMsg)

A non-error message from the Databento Live Subscription Gateway (LSG).

§

Cbbo(CbboMsg)

A consolidated best bid and offer message.

Trait Implementations§

source§

impl Clone for RecordEnum

source§

fn clone(&self) -> RecordEnum

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for RecordEnum

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a RecordEnum> for RecordRef<'a>

source§

fn from(rec_enum: &'a RecordEnum) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a RecordEnum> for RecordRefEnum<'a>

source§

fn from(rec_enum: &'a RecordEnum) -> Self

Converts to this type from the input type.
source§

impl From<CbboMsg> for RecordEnum

source§

fn from(rec: CbboMsg) -> Self

Converts to this type from the input type.
source§

impl From<ErrorMsg> for RecordEnum

source§

fn from(rec: ErrorMsg) -> Self

Converts to this type from the input type.
source§

impl From<ImbalanceMsg> for RecordEnum

source§

fn from(rec: ImbalanceMsg) -> Self

Converts to this type from the input type.
source§

impl From<InstrumentDefMsg> for RecordEnum

source§

fn from(rec: InstrumentDefMsg) -> Self

Converts to this type from the input type.
source§

impl From<MboMsg> for RecordEnum

source§

fn from(rec: MboMsg) -> Self

Converts to this type from the input type.
source§

impl From<Mbp10Msg> for RecordEnum

source§

fn from(rec: Mbp10Msg) -> Self

Converts to this type from the input type.
source§

impl From<Mbp1Msg> for RecordEnum

source§

fn from(rec: Mbp1Msg) -> Self

Converts to this type from the input type.
source§

impl From<OhlcvMsg> for RecordEnum

source§

fn from(rec: OhlcvMsg) -> Self

Converts to this type from the input type.
source§

impl From<StatMsg> for RecordEnum

source§

fn from(rec: StatMsg) -> Self

Converts to this type from the input type.
source§

impl From<StatusMsg> for RecordEnum

source§

fn from(rec: StatusMsg) -> Self

Converts to this type from the input type.
source§

impl From<SymbolMappingMsg> for RecordEnum

source§

fn from(rec: SymbolMappingMsg) -> Self

Converts to this type from the input type.
source§

impl From<SystemMsg> for RecordEnum

source§

fn from(rec: SystemMsg) -> Self

Converts to this type from the input type.
source§

impl From<TradeMsg> for RecordEnum

source§

fn from(rec: TradeMsg) -> Self

Converts to this type from the input type.
source§

impl Record for RecordEnum

source§

fn header(&self) -> &RecordHeader

Returns a reference to the RecordHeader that comes at the beginning of all record types.
source§

fn raw_index_ts(&self) -> u64

Returns the raw primary timestamp for the record. Read more
source§

fn record_size(&self) -> usize

Returns the size of the record in bytes.
source§

fn rtype(&self) -> Result<RType>

Tries to convert the raw record type into an enum which is useful for exhaustive pattern matching. Read more
source§

fn publisher(&self) -> Result<Publisher>

Tries to convert the raw publisher_id into an enum which is useful for exhaustive pattern matching. Read more
source§

fn index_ts(&self) -> Option<OffsetDateTime>

Returns the primary timestamp for the record. Returns None if the primary timestamp contains the sentinel value for a null timestamp. Read more
source§

fn index_date(&self) -> Option<Date>

Returns the primary date for the record; the date component of the primary timestamp (index_ts()). Returns None if the primary timestamp contains the sentinel value for a null timestamp.
source§

impl RecordMut for RecordEnum

source§

fn header_mut(&mut self) -> &mut RecordHeader

Returns a mutable reference to the RecordHeader that comes at the beginning of all record types.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Ungil for T
where T: Send,