| 335 | /// Edge pattern: -[:label {properties}]- |
| 336 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 337 | pub struct Edge { |
| 338 | pub identifier: Option<String>, |
| 339 | pub labels: Vec<String>, |
| 340 | pub properties: Option<PropertyMap>, |
| 341 | pub direction: EdgeDirection, |
| 342 | pub quantifier: Option<PathQuantifier>, |
| 343 | pub location: Location, |
| 344 | } |
| 345 | |
| 346 | /// Edge direction |
| 347 | #[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] |
no outgoing calls
no test coverage detected