1#[derive(Debug, Clone)] 2pub struct OracleConnectionOptions { 3 pub host: String, 4 pub port: u16, 5 pub username: String, 6 pub password: String, 7 pub database: Option<String>, 8}