Struct sozu_command_lib::config::HttpFrontendConfig
source · [−]pub struct HttpFrontendConfig {
pub address: SocketAddr,
pub hostname: String,
pub path_begin: String,
pub certificate: Option<String>,
pub key: Option<String>,
pub certificate_chain: Option<Vec<String>>,
pub tls_versions: Vec<TlsVersion>,
}
Fields
address: SocketAddr
hostname: String
path_begin: String
certificate: Option<String>
key: Option<String>
certificate_chain: Option<Vec<String>>
tls_versions: Vec<TlsVersion>
Implementations
Trait Implementations
sourceimpl Clone for HttpFrontendConfig
impl Clone for HttpFrontendConfig
sourcefn clone(&self) -> HttpFrontendConfig
fn clone(&self) -> HttpFrontendConfig
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for HttpFrontendConfig
impl Debug for HttpFrontendConfig
sourceimpl<'de> Deserialize<'de> for HttpFrontendConfig
impl<'de> Deserialize<'de> for HttpFrontendConfig
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for HttpFrontendConfig
impl Hash for HttpFrontendConfig
sourceimpl PartialEq<HttpFrontendConfig> for HttpFrontendConfig
impl PartialEq<HttpFrontendConfig> for HttpFrontendConfig
sourcefn eq(&self, other: &HttpFrontendConfig) -> bool
fn eq(&self, other: &HttpFrontendConfig) -> bool
sourceimpl Serialize for HttpFrontendConfig
impl Serialize for HttpFrontendConfig
impl Eq for HttpFrontendConfig
impl StructuralEq for HttpFrontendConfig
impl StructuralPartialEq for HttpFrontendConfig
Auto Trait Implementations
impl RefUnwindSafe for HttpFrontendConfig
impl Send for HttpFrontendConfig
impl Sync for HttpFrontendConfig
impl Unpin for HttpFrontendConfig
impl UnwindSafe for HttpFrontendConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more