(&self, layer: Layer)
| 180 | /// Returns `true` if the given layer is included in this selection. |
| 181 | #[inline] |
| 182 | pub fn includes(&self, layer: Layer) -> bool { |
| 183 | self.layers.contains(&layer) |
| 184 | } |
| 185 | |
| 186 | /// Returns `true` if all three layers are selected (full download). |
| 187 | pub fn is_all(&self) -> bool { |
no test coverage detected