[][src]Trait bech32_no_std::Base32Len

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

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

Required methods

fn base32_len(&self) -> usize

Calculate the base32 serialized length

Loading content...

Implementors

impl<T: AsRef<[u8]>> Base32Len for T[src]

Loading content...