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