ig-client 0.11.3

This crate provides a client for the IG Markets API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use pretty_simple_display::DisplaySimple;
use serde::{Deserialize, Serialize};

/// Configuration for database connections
#[derive(Debug, DisplaySimple, Serialize, Deserialize, Clone)]
pub struct DatabaseConfig {
    /// Database connection URL
    pub url: String,
    /// Maximum number of connections in the connection pool
    pub max_connections: u32,
}