| 232 | |
| 233 | #[derive(Debug)] |
| 234 | struct RelationshipInsertion { |
| 235 | variable: String, |
| 236 | roles: Vec<RoleAssignment>, |
| 237 | relationship_type: String, |
| 238 | attributes: Vec<AttributeValue>, |
| 239 | } |
| 240 | |
| 241 | fn role_assignment(input: &str) -> IResult<&str, RoleAssignment> { |
| 242 | map( |
no outgoing calls
no test coverage detected