Returns true if the result contains no rows.
(&self)
| 197 | impl QueryResult { |
| 198 | /// Returns true if the result contains no rows. |
| 199 | pub fn is_empty(&self) -> bool { |
| 200 | self.rows.is_empty() |
| 201 | } |
| 202 | |
| 203 | /// Returns the number of rows in the result. |
| 204 | pub fn row_count(&self) -> usize { |
no outgoing calls
no test coverage detected