encoder 0.2.4

Blazing fast encoder written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Encoder
//!
//! This library provides fast and efficient ways to encode various types into a `Vec<u8>`.
//! It avoids unnecessary allocations and copies to achieve high performance.
//!
//! ## How to Use
//!
//! Run `cargo add encoder`
//!
//! Put module trait in your code `use encoder::<MODULE>::Encode;`
//!
//! ## Example
//!
//! Check the relevant modules.
#![warn(missing_docs)]

pub mod json;
pub mod number;