pub trait Base32Len: ToBase32 {
    fn base32_len(&self) -> usize;
}
Expand description

Interface to calculate the length of the base32 representation before actually serializing

Required Methods

Calculate the base32 serialized length

Implementors