pub trait Execute<'__query>: Sql<'__query> {
// Provided method
fn execute<C: TryInto<ConnTrans<'__query>>>(
&'__query self,
into_conn_trans: C,
) -> Result<u64, Error>
where Error: From<C::Error> { ... }
}Provided Methods§
fn execute<C: TryInto<ConnTrans<'__query>>>( &'__query self, into_conn_trans: C, ) -> Result<u64, Error>
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.