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