Struct sozu_command_lib::proxy::HttpsListener [−][src]
pub struct HttpsListener {
pub front: SocketAddr,
pub public_address: Option<IpAddr>,
pub answer_404: String,
pub answer_503: String,
pub versions: Vec<TlsVersion>,
pub cipher_list: String,
pub rustls_cipher_list: Vec<String>,
pub tls_provider: TlsProvider,
pub expect_proxy: bool,
pub sticky_name: String,
}Fields
front: SocketAddr
public_address: Option<IpAddr>
answer_404: String
answer_503: String
versions: Vec<TlsVersion>
cipher_list: String
rustls_cipher_list: Vec<String>
tls_provider: TlsProvider
expect_proxy: bool
sticky_name: String
Trait Implementations
impl Debug for HttpsListener[src]
impl Debug for HttpsListenerfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for HttpsListener[src]
impl Clone for HttpsListenerfn clone(&self) -> HttpsListener[src]
fn clone(&self) -> HttpsListenerReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for HttpsListener[src]
impl PartialEq for HttpsListenerfn eq(&self, other: &HttpsListener) -> bool[src]
fn eq(&self, other: &HttpsListener) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &HttpsListener) -> bool[src]
fn ne(&self, other: &HttpsListener) -> boolThis method tests for !=.
impl Eq for HttpsListener[src]
impl Eq for HttpsListenerimpl Hash for HttpsListener[src]
impl Hash for HttpsListenerfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0
[src]Feeds a slice of this type into the given [Hasher]. Read more
impl Default for HttpsListener[src]
impl Default for HttpsListenerfn default() -> HttpsListener[src]
fn default() -> HttpsListenerReturns the "default value" for a type. Read more
Auto Trait Implementations
impl Send for HttpsListener
impl Send for HttpsListenerimpl Sync for HttpsListener
impl Sync for HttpsListener