1 2 3 4 5 6 7 8
/// Graph errors. #[derive(Debug, thiserror::Error)] #[non_exhaustive] pub enum Error { /// The graph is missing relevant information. #[error("incomplete graph: {value:?}")] IncompleteGraph { value: String }, }