pub trait RowMetadata {
// Required method
fn fields() -> &'static [&'static str]
where Self: Sized;
}Expand description
Metadata generated by DatabaseRow derive for row structs.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".