pub trait BufPutLexicalExt {
// Required methods
fn put_i64_lexical(&mut self, i: i64);
fn put_bool_lexical(&mut self, b: bool);
fn put_str_lexical(&mut self, s: &str);
}pub trait BufPutLexicalExt {
// Required methods
fn put_i64_lexical(&mut self, i: i64);
fn put_bool_lexical(&mut self, b: bool);
fn put_str_lexical(&mut self, s: &str);
}