Skip to main content

Tabular

Trait Tabular 

Source
pub trait Tabular {
    // Required methods
    fn headers() -> Vec<&'static str>;
    fn row(&self) -> Vec<String>;
}

Required Methods§

Source

fn headers() -> Vec<&'static str>

Source

fn row(&self) -> Vec<String>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§