pub trait Printable {
    fn print(&self);
}
Expand description

Trait for things which can be printed from the runtime.

Required methods

Print the object.

Implementations on Foreign Types

Implementors