pub trait ToTableData {
// Required methods
fn headers_to_strings() -> Vec<impl ToString>;
fn to_keytype(&self) -> Vec<&KeyType>;
}Required Methods§
fn headers_to_strings() -> Vec<impl ToString>
fn to_keytype(&self) -> Vec<&KeyType>
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.