Trait Table

Source
pub trait Table {
    // Required method
    fn table(self) -> TableStruct;
}
Expand description

Trait to convert raw type into table

Required Methods§

Source

fn table(self) -> TableStruct

Converts raw type to a table

Implementors§

Source§

impl Table for TableStruct

Source§

impl<T, R> Table for T
where T: IntoIterator<Item = R>, R: Row,