Trait TableKind

Source
pub trait TableKind: Clone {
    // Required methods
    fn table_name(&self) -> Cow<'_, str>;
    fn table_key_label(&self) -> Cow<'_, str>;
    fn table_key_column_width(&self) -> Option<f64>;
}

Required Methods§

Source

fn table_name(&self) -> Cow<'_, str>

Source

fn table_key_label(&self) -> Cow<'_, str>

The column title for the key field in the rows

Source

fn table_key_column_width(&self) -> Option<f64>

Width of key column in number of characters (as per Excel), None == automatic.

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§