(&self, args: &[Expr], schema: &dyn ExprSchema)
| 249 | |
| 250 | #[deprecated(since = "50.0.0", note = "Use `return_field_from_args` instead.")] |
| 251 | pub fn is_nullable(&self, args: &[Expr], schema: &dyn ExprSchema) -> bool { |
| 252 | #[expect(deprecated)] |
| 253 | self.inner.is_nullable(args, schema) |
| 254 | } |
| 255 | |
| 256 | /// Return a preimage |
| 257 | /// |
no outgoing calls
no test coverage detected