pub type GraphResult<T> = Result<T, GraphError>;
pub enum GraphResult<T> { Ok(T), Err(GraphError), }
Contains the success value
Contains the error value