pub type GResult<G, T> = Result<T, <G as Graph>::Error>;
Type alias for results produced by a graph.
enum GResult<G, T> { Ok(T), Err(<G as Graph>::Error), }
Contains the success value
Contains the error value