pub trait Tracable: HasTracableInfo {
    // Required methods
    fn inc_depth(self) -> Self;
    fn dec_depth(self) -> Self;
    fn format(&self) -> String;
    fn header(&self) -> String;
}
Expand description

Trait to indicate the type has information for tracing.

Required Methods§

source

fn inc_depth(self) -> Self

source

fn dec_depth(self) -> Self

source

fn format(&self) -> String

source

fn header(&self) -> String

Object Safety§

This trait is not object safe.

Implementors§