Type Alias SyRes

Source
pub type SyRes<T> = Result<T, SyslogError>;

Aliased Type§

pub enum SyRes<T> {
    Ok(T),
    Err(SyslogError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SyslogError)

Contains the error value