pub trait SelectExt {
// Provided method
fn exists<C>(self, db: &C) -> Result<bool, DbErr>
where C: ConnectionTrait,
Self: Sized { ... }
}Expand description
Helper trait for selectors with convenient methods
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".