pub trait Node: Spanned {
// Required method
fn emit_with<W, S>(&self, e: &mut Emitter<'_, W, S>) -> Result
where W: WriteJs,
S: SourceMapperExt + SourceMapper;
}
Required Methods§
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.