(input: &str)
| 186 | } |
| 187 | |
| 188 | fn attribute_value(input: &str) -> IResult<&str, AttributeValue> { |
| 189 | map( |
| 190 | tuple((ws(identifier), ws(char(':')), ws(value))), |
| 191 | |(name, _, value)| AttributeValue { |
| 192 | name: name.to_string(), |
| 193 | value, |
| 194 | }, |
| 195 | )(input) |
| 196 | } |
| 197 | |
| 198 | #[derive(Debug)] |
| 199 | struct EntityInsertion { |