pub trait IntoRow {
    fn headers(&self) -> Row<'_>;
    fn into_row(&self) -> Row<'_>;
}
Expand description

A trait for types that know how to turn themselves into a table row.

Note that the tuple implementations of these methods always copy strings.

Required Methods

Returns a set of cells that can be used as headers for the cells of data of this type.

Returns the row.

Implementations on Foreign Types

Implementors