pub trait DumpNode {
// Required method
unsafe fn dump_to_html(
&self,
options: DumpOptions,
current_depth: u8,
) -> String;
}Required Methods§
unsafe fn dump_to_html(&self, options: DumpOptions, current_depth: u8) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".