pub trait HasTracableInfo {
    // Required methods
    fn get_tracable_info(&self) -> TracableInfo;
    fn set_tracable_info(self, info: TracableInfo) -> Self;
}
Expand description

Trait to indicate TracableInfo is provided.

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§