register the specific sql metadata item
(&mut self, name: impl SqlInfoName, value: impl Into<SqlInfoValue>)
| 346 | |
| 347 | /// register the specific sql metadata item |
| 348 | pub fn append(&mut self, name: impl SqlInfoName, value: impl Into<SqlInfoValue>) { |
| 349 | self.infos.insert(name.as_u32(), value.into()); |
| 350 | } |
| 351 | |
| 352 | /// Encode the contents of this list according to the [FlightSQL spec] |
| 353 | /// |