Skip to main content

ErrDebugLog

Trait ErrDebugLog 

Source
pub trait ErrDebugLog<T, E>
where E: Debug,
{ // Required method fn log_err_debug(self, level: Level) -> Self; // Provided method fn err_debug_log(self) -> Self where Self: Sized { ... } }

Required Methods§

Source

fn log_err_debug(self, level: Level) -> Self

Provided Methods§

Source

fn err_debug_log(self) -> Self
where Self: Sized,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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