orientdb-client 0.2.1

A Rust client for OrientDB™
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::time::Duration;

pub struct Config {
    pub max: u32,
    pub min: u32,
    pub timeout: Duration,
}

impl Default for Config {
    fn default() -> Self {
        Config {
            max: 10,
            min: 0,
            timeout: Duration::from_secs(30),
        }
    }
}