(&self)
| 253 | /// Returns true if metadata contains custom properties. |
| 254 | #[inline] |
| 255 | pub fn has_custom_properties(&self) -> bool { |
| 256 | self.declaration_kinds.contains(DeclarationKind::Custom) |
| 257 | } |
| 258 | |
| 259 | /// Returns true if metadata contains computed values. |
| 260 | #[inline] |
no test coverage detected