| 197 | |
| 198 | #[derive(Debug)] |
| 199 | struct EntityInsertion { |
| 200 | variable: String, |
| 201 | entity_type: String, |
| 202 | attributes: Vec<AttributeValue>, |
| 203 | } |
| 204 | |
| 205 | fn entity_insertion(input: &str) -> IResult<&str, EntityInsertion> { |
| 206 | map( |
no outgoing calls
no test coverage detected