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