1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2022 Biagio Festa

pub use header::Header;
pub use header::TryIntoHeader;
pub use stream_id::StreamId;

pub mod decoder;
pub mod encoder;
mod header;
mod stream_id;

pub mod errors {
    //! Module for errors declarations.

    pub use crate::decoder::DecoderError;
    pub use crate::encoder::EncoderError;
    pub use crate::header::HeaderError;
}