1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! Encoding and decoding utilities for representing data in compact textual forms.
//!
//! This crate provides conversion between raw bytes and encoded strings.
//!
//! See [`ByteVec`], [`EncodedString`], and [`Encoding`] for the main entry points.
//! Types and algorithms for encoding/decoding data.
/// Serialization algorithms and implementations.
/// Encoder trait for encoding and decoding data.
/// Raw byte representation of serializable data.
/// String representation of serialized data.
/// Error type for serialization operations.
/// Supported serialization formats.
pub use Base36;
pub use Base58;
pub use Base64;
pub use Hex;
pub use Uuencode;
pub use ByteVec;
pub use EncodedString;
pub use Encoder;
pub use Encoding;
pub use SerialiseError;