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