bin-encode-decode 1.1.41

A high-performance binary encode and decode library that supports customizable character sets beyond Base64.
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Handles string encoding and decoding operations.
///
/// Uses a custom character set for the encoding/decoding process.
///
/// The character set should contain unique characters and ideally have 64 characters
/// for base64-like encoding.
#[derive(Clone, Copy, Debug)]
pub struct Charset<'a>(
    /// Reference to the character set used for encoding/decoding.
    pub &'a str,
);