//! `DataPoint` implementations for each market-data class Station persists.
//!
//! One file per class. Each implements [`crate::series::DataPoint`] with a
//! fixed-size little-endian record format. Symbol is NOT stored in the record
//! itself — it lives in the path (`<kind>/<exchange>/<account>/<symbol>/...`).
pub use AggTradePoint;
pub use BarPoint;
pub use FundingRatePoint;
pub use LiquidationPoint;
pub use MarkPricePoint;
pub use ObSnapshotPoint;
pub use OpenInterestPoint;
pub use TickerPoint;
pub use TradePoint;