Check if value is null
(&self)
| 308 | |
| 309 | /// Check if value is null |
| 310 | pub fn is_null(&self) -> bool { |
| 311 | matches!(self, Value::Null) |
| 312 | } |
| 313 | |
| 314 | /// Get the type name of this value |
| 315 | pub fn type_name(&self) -> &'static str { |
no outgoing calls
no test coverage detected