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