fastserial 0.1.2

Ultra-fast, zero-copy serialization/deserialization library for Rust with SIMD acceleration
Documentation
1
2
3
4
5
6
7
8
//! # Schema Module
//!
//! This module provides tools for schema hashing and validation.
//! It ensures that the data being deserialized matches the expected structure,
//! preventing data corruption or logic errors due to schema mismatches.

pub mod types;
pub mod validate;