Struct sozu_command_lib::config::FileConfig [] [src]

pub struct FileConfig {
    pub command_socket: String,
    pub command_buffer_size: Option<usize>,
    pub max_command_buffer_size: Option<usize>,
    pub max_connections: usize,
    pub max_buffers: usize,
    pub buffer_size: usize,
    pub saved_state: Option<String>,
    pub log_level: Option<String>,
    pub log_target: Option<String>,
    pub log_access_target: Option<String>,
    pub worker_count: Option<u16>,
    pub worker_automatic_restart: Option<bool>,
    pub metrics: Option<MetricsConfig>,
    pub http: Option<ProxyConfig>,
    pub https: Option<ProxyConfig>,
    pub tcp: Option<TcpProxyConfig>,
    pub applications: Option<HashMap<String, FileAppConfig>>,
    pub handle_process_affinity: Option<bool>,
    pub ctl_command_timeout: Option<u64>,
    pub pid_file_path: Option<String>,
}

Fields

Methods

impl FileConfig
[src]

[src]

[src]

Trait Implementations

impl Debug for FileConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for FileConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for FileConfig
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for FileConfig
[src]

Auto Trait Implementations

impl Send for FileConfig

impl Sync for FileConfig