(text: &str)
| 157 | } |
| 158 | |
| 159 | pub fn command_complete(text: &str) -> Vec<u8> { |
| 160 | let mut list = BufferList::new(); |
| 161 | list.add_cstring(text); |
| 162 | list.join(true, Some(b'C')) |
| 163 | } |
| 164 | |
| 165 | pub fn row_description(fields: &[Field]) -> Vec<u8> { |
| 166 | let mut list = BufferList::new(); |
no test coverage detected