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