pub trait Trace {
// Required methods
fn upgrade(self, err: YError) -> Self;
fn code(self, code: &str) -> Self;
fn msg(self, msg: &str) -> Self;
fn trace(self, ctx: String) -> Self;
}
Required Methods§
fn upgrade(self, err: YError) -> Self
fn code(self, code: &str) -> Self
fn msg(self, msg: &str) -> Self
fn trace(self, ctx: String) -> Self
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.