pub trait SqlxFactPredicates<B>where
B: GatekeepSqlxBackend,{
// Required method
fn predicate(&self, fact: &FactId, cx: &Context) -> Option<SqlxFragment<B>>;
}Expand description
Maps a residual fact to a trusted predicate over the candidate row.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<T> SqlxFactPredicates<PostgresBackend> for Twhere
T: PgFactPredicates,
Available on crate feature
postgres only.