You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
I think we may want both Stream and Vec variants of results. If all APIs return streams, when you want a vec as a consumer of the library, you would collect the stream. Some database drivers will return all the results at once, and we already have a Vec there. In that case you would have a Vec converted to a Stream, and converted back into a Vec, so there's unnecessary copying and allocation.
This is a ticket for functionality needed before releasing version 0.1 of the crate.
ResultRow
, check if we could copy less and move insteadStream
in addition to a fully allocatedVec
failure
with something implementingstd::error::Error
bonus:
The text was updated successfully, but these errors were encountered: