pub trait LogicalCardinalityExt {
// Required methods
fn max_one_row(&self) -> bool;
fn row_count(&self) -> Option<usize>;
}Required Methods§
Sourcefn max_one_row(&self) -> bool
fn max_one_row(&self) -> bool
Returns true if the plan node is guaranteed to yield at most one row.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".