pub trait ResultBase {
    fn get_module() -> u32;
    fn get_description() -> u32;

    fn get_value() -> u32 { ... }
    fn make() -> ResultCode { ... }
    fn make_err<T>() -> Result<T> { ... }
    fn matches(rc: ResultCode) -> bool { ... }
}

Required Methods

Provided Methods

Implementors