本文介紹了鐵銹動態特性變量與不同的通用類型新?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我對鐵銹還是個新手。正在嘗試使用DIESEL-RS創建數據庫連接。
以下是我的部分代碼:
use diesel::Connecction;
use diesel::mysql::MysqlConnection;
use diesel::sqlite::SqliteConnection;
let engine = "mysql";
let mysql_url = "mysql://username:password@localhost:3306/test";
let sqlite_url = "sqlite://sqlite.db";
let connection : Box<dyn Connection> = if engine == "mysql" {
Box::new(MysqlConnection::establish(mysql_url).unwrap())
} else {
Box::new(SqliteConnection::establish(sqlite_url).unwrap())
}
以下是編譯器錯誤:
error[E0191]: the value of the associated types `Backend` (from trait `Connection`), `TransactionManager` (from trait `Connection`) must be specified
--> src/quant/common/persistence/database.rs:11:25
|
11 | connection: Box<dyn Connection>,
| ^^^^^^^^^^ help: specify the associated types: `Connection<Backend = Type, TransactionManager = Type>`
當程序使用不同的參數啟動時,是否可以創建不同的連接?
推薦答案
不支持此用例。See this issue。如果您設法使用Connection實現這一點,您將不得不包裝事務和查詢,然后很可能包裝一些生成的table!
類型,最后陷入困境。
這篇關于鐵銹動態特性變量與不同的通用類型新?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,