Trait TableFormatPrint

Source
pub trait TableFormatPrint {
    // Required methods
    fn init() -> Self;
    fn print(self);
}
Expand description

Trait for printing tables

Required Methods§

Source

fn init() -> Self

Initializes the struct

Source

fn print(self)

Prints the table

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§