pub type GraphResult<T> = Result<T, GraphError>;Available on crate feature
graph only.Expand description
Result type for graph operations.
Aliased Type§
pub enum GraphResult<T> {
Ok(T),
Err(GraphError),
}pub type GraphResult<T> = Result<T, GraphError>;graph only.Result type for graph operations.
pub enum GraphResult<T> {
Ok(T),
Err(GraphError),
}