pub trait IntoRoffNode {
// Required method
fn into_roff(self) -> RoffNode;
}Expand description
A trait that describes items that can be turned into a RoffNode.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".