pub trait RowLike {
type Value: Clone;
// Required method
fn values(&self) -> &[Self::Value];
// Provided method
fn arity(&self) -> usize { ... }
}Expand description
Minimal row interface required by generic JOIN row-combination helpers.
Required Associated Types§
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".