digdigdig3-core 0.3.17

Core data types for digdigdig3 — pure market-data + trading structs/enums (Kline/Ticker/OrderBook/Trade/StreamKind/Symbol/…). Zero connectors, zero network I/O. A light dependency for consumers that only need the types, not the 47 exchange connectors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WebSocket stream-description TYPES (no transport / connection logic).
//!
//! Only the pure type definitions live here — `StreamKind`, `KlineInterval`,
//! `StreamSpec`, `SupportLevel`. The actual WS framework (transport, protocol,
//! reconnect, topic registry) stays in the full `digdigdig3` crate.

pub mod stream_kind;
pub mod stream_spec;
pub mod support_level;

pub use stream_kind::{KlineInterval, StreamKind};
pub use stream_spec::StreamSpec;
pub use support_level::SupportLevel;