(&self, id: &str)
| 84 | |
| 85 | impl Level { |
| 86 | pub fn get_layer(&self, id: &str) -> Option<&LayerInstance> { |
| 87 | self.layer_instances.iter().find(|l| l.identifier == id) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | #[derive(Clone, Debug, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected