pub trait Row {
// Required method
fn row(self) -> RowStruct;
}Expand description
Trait to convert raw types into rows
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".