pub trait MySqlBufExt: Buf {
// Required methods
fn get_uint_lenenc(&mut self) -> u64;
fn get_str_lenenc(&mut self) -> Result<String, Error>;
fn get_bytes_lenenc(&mut self) -> Bytes;
}
pub trait MySqlBufExt: Buf {
// Required methods
fn get_uint_lenenc(&mut self) -> u64;
fn get_str_lenenc(&mut self) -> Result<String, Error>;
fn get_bytes_lenenc(&mut self) -> Bytes;
}