1 2 3 4
pub trait DbRow: std::marker::Send { fn fields(&self) -> Vec<String>; fn columns(&self) -> Vec<String>; }