Get a value by column name
(&self, key: &str)
| 209 | impl Row { |
| 210 | /// Get a value by column name |
| 211 | pub fn get(&self, key: &str) -> Option<&Value> { |
| 212 | self.values.get(key) |
| 213 | } |
| 214 | |
| 215 | /// Get a string value |
| 216 | pub fn get_string(&self, key: &str) -> Option<String> { |
no outgoing calls
no test coverage detected