`true` if all tiers are empty.
(&self)
| 88 | |
| 89 | /// `true` if all tiers are empty. |
| 90 | pub fn is_empty(&self) -> bool { |
| 91 | self.critical.is_empty() && self.high.is_empty() && self.low.is_empty() |
| 92 | } |
| 93 | |
| 94 | /// Pending count for the Critical tier. |
| 95 | pub fn critical_len(&self) -> usize { |
no outgoing calls
no test coverage detected