pub type GraphResult<T = ()> = Result<T, GraphError>;Expand description
The result type alias of a graph operation, see GraphError & GraphErrorKind for more.
§Examples
use graph_theory::GraphResult;Aliased Type§
pub enum GraphResult<T = ()> {
Ok(T),
Err(GraphError),
}