tsfile-writer 0.1.0

TsFile Writer in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(PartialEq, Copy, Clone)]
pub enum CompressionType {
    UNCOMPRESSED,
}

impl CompressionType {
    pub fn serialize(&self) -> u8 {
        match self {
            CompressionType::UNCOMPRESSED => 0,
        }
    }
}