Trait ErrorLogging

Source
pub trait ErrorLogging {
    type ResultType;

    // Required method
    fn elog(self, ctx: (Option<&str>, &str, u32)) -> Self::ResultType;
}

Required Associated Types§

Required Methods§

Source

fn elog(self, ctx: (Option<&str>, &str, u32)) -> Self::ResultType

uuid, file, line

Implementations on Foreign Types§

Source§

impl<T, E> ErrorLogging for Result<T, E>
where E: Debug,

Source§

type ResultType = Result<T, E>

Source§

fn elog(self, ctx: (Option<&str>, &str, u32)) -> Self::ResultType

Implementors§