Enum rust_htslib::bam::CompressionLevel [−][src]
pub enum CompressionLevel { Uncompressed, Fastest, Maximum, Level(u32), }
Expand description
Compression levels in BAM/CRAM files
- Uncompressed: No compression, zlib level 0
- Fastest: Lowest compression level, zlib level 1
- Maxium: Highest compression level, zlib level 9
- Level(i): Custom compression level in the range [0, 9]
Variants
Level(u32)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CompressionLevel
impl Send for CompressionLevel
impl Sync for CompressionLevel
impl Unpin for CompressionLevel
impl UnwindSafe for CompressionLevel
Blanket Implementations
Mutably borrows from an owned value. Read more