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
So we can access the rows of the result set of call like conn.query_named in an async function.
Then call this async function with tokio spawn.
Thanks.
The text was updated successfully, but these errors were encountered:
unsafe impl Sync for Row {}
unsafe impl Send for Row {}
unsafe impl<'a, T> Sync for ResultSet<'a, T> where T: RowValue {}
unsafe impl<'a, T> Send for ResultSet<'a, T> where T: RowValue {}
zhaopinglu
changed the title
Request for adding Sync/Send trait for Row and ResultSet
Request for implementing Sync/Send trait for Row and ResultSet
Sep 28, 2021
So we can access the rows of the result set of call like conn.query_named in an async function.
Then call this async function with tokio spawn.
Thanks.
The text was updated successfully, but these errors were encountered: