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