1
2
3
4
5
6
7
8
pub mod hex;
pub mod percent;

/// The insufficient target space error message.
pub(crate) const INSUFFICIENT_TARGET_SPACE: &'static str = "Insufficient Target Space";

/// The encoded length overflows error message.
pub(crate) const ENCODED_LENGTH_OVERFLOWS: &'static str = "Encoded Length Overflows";