pub type Result<T> = Result<T, GcopError>;
Result type alias, use GcopError as error type
GcopError
pub enum Result<T> { Ok(T), Err(GcopError), }
Contains the success value
Contains the error value