pub trait ToPlainText {
// Required method
fn to_plain(&self) -> String;
}Expand description
A trait for converting structure data to Plain Text for writing
to *.txt or output to stdout
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl ToPlainText for CPU
Available on non-AArch64 only.