Expand description
Decoder
This library provides fast and efficient ways to decode various types from Vec<u8>
.
It avoids unnecessary allocations and copies to achieve high performance.
How to Use
Just run cargo add decoder
to add this crate to your project, and then include the
relevant trait in your code like this: use decoder::number::Decode;
Example
Check the relevant modules.