(&self)
| 253 | } |
| 254 | |
| 255 | pub fn short_column_group(&self) -> Option<u8> { |
| 256 | if self.is_short() { |
| 257 | Some(*self as u8) |
| 258 | } else { |
| 259 | Option::None |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | pub fn one_line_delta(&self) -> Option<i32> { |
| 264 | match self { |
no test coverage detected