pub trait MultiRowMetadata {
// Required method
fn get_num_rows(&self) -> usize;
}Expand description
Metadata types need to implement this trait to be used with MultiRowLayout
Required Methods§
fn get_num_rows(&self) -> usize
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".