Struct sozu_command_lib::config::HttpAppConfig
[−]
[src]
pub struct HttpAppConfig {
pub app_id: String,
pub hostname: String,
pub path_begin: String,
pub certificate: Option<String>,
pub key: Option<String>,
pub certificate_chain: Option<Vec<String>>,
pub backends: Vec<String>,
pub sticky_session: bool,
pub https_redirect: bool,
}Fields
app_id: String
hostname: String
path_begin: String
certificate: Option<String>
key: Option<String>
certificate_chain: Option<Vec<String>>
backends: Vec<String>
sticky_session: bool
https_redirect: bool
Methods
impl HttpAppConfig[src]
pub fn generate_orders(&self) -> Vec<Order>[src]
Trait Implementations
impl Debug for HttpAppConfig[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Clone for HttpAppConfig[src]
fn clone(&self) -> HttpAppConfig[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for HttpAppConfig[src]
fn eq(&self, __arg_0: &HttpAppConfig) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &HttpAppConfig) -> bool[src]
This method tests for !=.