mrc 0.2.3

Zero-copy, zero-allocation MRC-2014 file format reader/writer for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Unified encoding/decoding engine
//!
//! This module implements the pipeline architecture:
//! ```text
//! Raw Bytes → Endian Normalization → Typed Values → Type Conversion
//! ```
//!
//! With zero-copy fast paths whenever possible.

pub mod block;
pub mod codec;
pub mod convert;
pub mod endian;
pub mod pipeline;

#[cfg(feature = "simd")]
pub mod simd;