Returns a [`RowParser`] that can be used to parse [`Row`] from bytes
(&self)
| 1168 | |
| 1169 | /// Returns a [`RowParser`] that can be used to parse [`Row`] from bytes |
| 1170 | pub fn parser(&self) -> RowParser { |
| 1171 | RowParser::new(Arc::clone(&self.fields)) |
| 1172 | } |
| 1173 | |
| 1174 | /// Returns the size of this instance in bytes |
| 1175 | /// |
no outgoing calls