Whether this value contains no methods, properties, or constants.
(&self)
| 303 | impl VirtualMembers { |
| 304 | /// Whether this value contains no methods, properties, or constants. |
| 305 | pub fn is_empty(&self) -> bool { |
| 306 | self.methods.is_empty() && self.properties.is_empty() && self.constants.is_empty() |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | /// A provider that contributes virtual members to a class. |
no outgoing calls