pub trait Tabular {
// Required method
fn tabular_print(&self);
}Required Methods§
fn tabular_print(&self)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait Tabular {
// Required method
fn tabular_print(&self);
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".