最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

rust - How to convert the results of an 'execute_unprepared' from sea_orm into a useable hashmap or vec? - Stack

programmeradmin0浏览0评论

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?

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论