Check if this is an `$auth.*` reference or function.
(&self)
| 162 | impl PredicateValue { |
| 163 | /// Check if this is an `$auth.*` reference or function. |
| 164 | pub fn is_auth_ref(&self) -> bool { |
| 165 | matches!(self, Self::AuthRef(_) | Self::AuthFunc { .. }) |
| 166 | } |
| 167 | |
| 168 | /// Resolve this value using the given `AuthContext`. |
| 169 | /// |