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