dolphindb 3.3.1

A Rust native API for DolphinDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub struct Config {
    pub host: String,
    pub port: u16,
    pub user: String,
    pub passwd: String,
}

// todo:同一个连接
impl Config {
    pub fn new() -> Self {
        Config {
            host: String::from("192.168.0.54"),
            port: 8848,
            user: String::from("admin"),
            passwd: String::from("123456"),
        }
    }
}