pub trait IntoOneTimeExecutorAt<'c> {
type Executor: PgExecutor<'c>;
// Required method
fn into_executor(self) -> OneTimeExecutor<'c, Self::Executor>
where Self: 'c;
}pub trait IntoOneTimeExecutorAt<'c> {
type Executor: PgExecutor<'c>;
// Required method
fn into_executor(self) -> OneTimeExecutor<'c, Self::Executor>
where Self: 'c;
}