radn-rs/src/rstd/tracing/traced.rs

7 lines
229 B
Rust

use super::*;
/// Wrapper containing the value and the corresponding execution trace.
///
/// For what the trace contains, see its rendered form, [`RenderedAny`].
pub type Traced<A> = instances::effect::WithEffect<A, TraceBox>;