base_xx 0.9.0

Base XX encoding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Supported serialization formats.
///
/// This enum represents the different formats that can be used to serialize
/// data structures into string representations.
#[derive(Debug, Copy, Clone, Eq, PartialEq, PartialOrd, Ord)]
pub enum Encoding {
    /// Base36 encoding (0-9 and A-Z)
    Base36,
    /// Base58 encoding (Bitcoin-style, excluding similar-looking characters)
    Base58,
    /// Standard Base64 encoding
    Base64,
    /// U-U Encoding format
    Uuencode,
    /// Hexadecimal encoding (0-9 and A-F)
    Hex,
}