1
2
3
4
pub trait Length {
    /// Returns the length of the encoded data in bytes.
    fn length(&self) -> usize;
}