vector/codecs/mod.rs
1//! A collection of codecs that can be used to transform between bytes streams /
2//! byte messages, byte frames and structured events.
3
4#![deny(missing_docs)]
5
6mod decoding;
7mod encoding;
8mod ready_frames;
9
10pub use decoding::{Decoder, DecodingConfig};
11pub use encoding::{
12 Encoder, EncodingConfig, EncodingConfigWithFraming, SinkType, TimestampFormat, Transformer,
13};
14pub use ready_frames::ReadyFrames;