| 7 | |
| 8 | #[derive(Debug, Clone, PartialEq)] |
| 9 | pub struct EntityInference { |
| 10 | pub variable: String, |
| 11 | pub entity_type: String, |
| 12 | pub attributes: Attributes, |
| 13 | } |
| 14 | |
| 15 | pub fn parse_entity_inference(input: &str) -> IResult<&str, EntityInference> { |
| 16 | map( |
no outgoing calls