Trait Printable
pub trait Printable {
    // Required method
    fn print(&self);
}Expand description
Trait for things which can be printed from the runtime.
Required Methods§
fn print(&self)
fn print(&self)
Print the object.
pub trait Printable {
    // Required method
    fn print(&self);
}Trait for things which can be printed from the runtime.
Print the object.