dbn 0.53.0

Library for working with Databento Binary Encoding (DBN)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Encoding DBN records into DBN, Zstandard-compressed or not.
mod sync;
pub use sync::{Encoder, MetadataEncoder, RecordEncoder};

#[cfg(feature = "async")]
mod r#async;
#[cfg(feature = "async")]
pub use r#async::{
    Encoder as AsyncEncoder, MetadataEncoder as AsyncMetadataEncoder,
    RecordEncoder as AsyncRecordEncoder,
};