Slide 34
Slide 34 text
Terrible clauses
impl Execute
for Find>
where R: Relation,
Repos: Repository,
Repos::Gateway: ExecuteOne,
Self: Query
{
type FutureType = <::Gateway as ExecuteOne<
Self::Parameters>>::Future;
fn execute(&self, repos: &Repos) -> Self::FutureType
where Repos: Stores {
ExecuteOne::execute_query(repos.gateway(), &self)
}
}
These things don’t out of the blue and are frequently changed.
32