(&self, id: &str)
| 197 | |
| 198 | impl EntityInstance { |
| 199 | pub fn get_field_instance(&self, id: &str) -> Option<&FieldInstance> { |
| 200 | self.field_instances.iter().find(|x| x.identifier == id) |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | #[derive(Clone, Debug, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected