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