pub trait ExecuteExt {
// Provided method
fn execute<'e, E: PgExecutor<'e>>(
&self,
executor: E,
) -> impl Future<Output = Result<u64>>
where Self: WriteStatement { ... }
}Expand description
The bound is on the method, and the impls are per-builder, for the two
reasons LoadExt explains.
Provided Methods§
fn execute<'e, E: PgExecutor<'e>>(
&self,
executor: E,
) -> impl Future<Output = Result<u64>>where
Self: WriteStatement,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".