(&self, fmt: &mut fmt::Formatter<'_>)
| 6 | |
| 7 | impl fmt::Display for GraphError { |
| 8 | fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 9 | fmt.write_str("the Graph query layer encountered an error during execution") |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | #[derive(Debug)] |