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