Thanks to visit codestin.com Credit goes to docs.rs
pub type AppResult<T> = Result<T, LcAppError>;
pub enum AppResult<T> { Ok(T), Err(LcAppError), }
Contains the success value
Contains the error value