serde-encoded-bytes 0.2.1

Efficient bytestring serialization for Serde-supporting types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Possible encodings for byte sequences when serializing into human-readable formats.

mod traits;

#[cfg(any(feature = "hex", test))]
mod hex;

#[cfg(feature = "base64")]
mod base64;

pub use traits::Encoding;

#[cfg(any(feature = "hex", test))]
pub use self::hex::Hex;

#[cfg(feature = "base64")]
pub use self::base64::{Base64, Base64Url};