admin管理员组文章数量:1344508
I'm still quite new to Rust, and just for integrity checking, I'm wanting to check some values of what should be a list of tables versus the action tables. For this, I have a sea_orm connection.
fn my_function(my_connection :DatabaseConnection) -> Vec<Vec<String>> { //could be a Hashmap, I'm not super picky
let pre-result = myDB.db_connection.execute_unprepared(".tables;").await?;
result = unwrap(parse(wtf(bbq(pre-result)))); // the magic mojo I need happens here
return result;
}
The problem I"m facing is that execute_unprepared (a native Sea_Orm method) returns a Pin that contains a Box that contains a Future that contains a result that contains an ExecResult...
I'm wanting to just return a nice neat vector or hashmap with a list of tables in the database... not... whatever monstrosity that execute_unprepared is returning. With is the ideal way to turn this into something straight forward & idomatic to use?
本文标签:
版权声明:本文标题:rust - How to convert the results of an 'execute_unprepared' from sea_orm into a useable hashmap or vec? - Stack 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804710a2541961.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论