Select all layers (full download). This is the default — equivalent to not specifying `?layers=` at all.
()
| 50 | /// |
| 51 | /// This is the default — equivalent to not specifying `?layers=` at all. |
| 52 | pub fn all() -> Self { |
| 53 | let mut layers = HashSet::new(); |
| 54 | layers.insert(Layer::Graph); |
| 55 | layers.insert(Layer::Semantic); |
| 56 | layers.insert(Layer::Content); |
| 57 | Self { layers } |
| 58 | } |
| 59 | |
| 60 | /// Thin pull: graph + content only. |
| 61 | /// |
no test coverage detected