pub fn is_null(row: &Row, i: usize) -> boolExpand description
Determine whether the value at the given column is SQL NULL.
Type-aware: matches on the column type to pick the right Option<T> so it works for
non-text columns (where Option<String> would be a type mismatch rather than NULL).