pub type Result<T> = Result<T, LogError>;
Result type for the logging crate.
pub enum Result<T> { Ok(T), Err(LogError), }
Contains the success value
Contains the error value