pub trait EnhanceErrorInfo<T> {
    // Required methods
    fn add(self, message: impl Into<String>) -> RgResult<T>;
    fn mark_abort(self) -> RgResult<T>;
}

Required Methods§

source

fn add(self, message: impl Into<String>) -> RgResult<T>

source

fn mark_abort(self) -> RgResult<T>

Object Safety§

This trait is not object safe.

Implementors§