pub trait Trace {
type Output;
// Required method
fn trace(self) -> Self::Output;
}Expand description
Represents types for which the trace can be computed.
pub trait Trace {
type Output;
// Required method
fn trace(self) -> Self::Output;
}Represents types for which the trace can be computed.