pub type Result<T> = Result<T, LuciError>;
Alias for Results in Luci.
Result
pub enum Result<T> { Ok(T), Err(LuciError), }
Contains the success value
Contains the error value