pub trait BufExt {
    // Required method
    fn get_var(&mut self) -> Result<u64, UnexpectedEnd>;
}

Required Methods§

Implementors§

source§

impl<T: Buf> BufExt for T