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