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