pub trait EasyExecutorInto<D: Driver>: EasyExecutor<D> {
type IntoInternalExecutor<'b>: Executor<'b, Database = D::InternalDriver>
where Self: 'b;
// Required method
fn into_executor<'a>(self) -> Self::IntoInternalExecutor<'a>
where Self: 'a;
}Required Associated Types§
type IntoInternalExecutor<'b>: Executor<'b, Database = D::InternalDriver> where Self: 'b
Required Methods§
fn into_executor<'a>(self) -> Self::IntoInternalExecutor<'a>where
Self: 'a,
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.