pub trait CountQueryExt: Into<Query> {
// Provided method
fn count(self) -> ValidationResult<CountQuery> { ... }
}
Provided Methods§
Sourcefn count(self) -> ValidationResult<CountQuery>
fn count(self) -> ValidationResult<CountQuery>
Gets the count from this query.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.