Skip to main content

Crate base_xx

Crate base_xx 

Source
Expand description

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.

Re-exports§

pub use algorithm::base36::Base36;
pub use algorithm::base58::Base58;
pub use algorithm::base64::Base64;
pub use algorithm::hex::Hex;
pub use algorithm::uuencode::Uuencode;
pub use byte_vec::ByteVec;
pub use encoded_string::EncodedString;
pub use encoder::Encoder;
pub use encoding::Encoding;
pub use serialise_error::SerialiseError;

Modules§

algorithm
Serialization algorithms and implementations.
byte_vec
Raw byte representation of serializable data.
encoded_string
String representation of serialized data.
encoder
Encoder trait for encoding and decoding data.
encoding
Supported serialization formats.
serialise_error
Error type for serialization operations.