pub(crate) trait IntoTrace {
type Output;
// Required method
fn into_trace(self) -> Self::Output;
// Provided method
fn to_trace(&self) -> Self::Output
where Self: Sized + Clone { ... }
}Available on (crate features
trace or replay) and crate feature trace only.