NyxCode / ormx

bringing orm-like features to sqlx
MIT License
287 stars 32 forks source link

Why boxed Future and stream? #31

Closed DXist closed 5 days ago

DXist commented 2 years ago

I'm interested why ormx chose to return boxed future and stream instead of impl Future and impl Stream respectively?

NyxCode commented 5 days ago

I haven't worked on ormx for quite a while, though I now want to get it at least usable again with the current sqlx version.
That part was written before -> impl Trait was allowed in trait methods, so these had to be boxed. Fixed in #40.