#[non_exhaustive]pub struct HostHeaderConditionConfig { /* private fields */ }
Expand description
Information about a host header condition.
Implementations§
source§impl HostHeaderConditionConfig
impl HostHeaderConditionConfig
sourcepub fn values(&self) -> Option<&[String]>
pub fn values(&self) -> Option<&[String]>
The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
source§impl HostHeaderConditionConfig
impl HostHeaderConditionConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HostHeaderConditionConfig
.
Trait Implementations§
source§impl Clone for HostHeaderConditionConfig
impl Clone for HostHeaderConditionConfig
source§fn clone(&self) -> HostHeaderConditionConfig
fn clone(&self) -> HostHeaderConditionConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HostHeaderConditionConfig
impl Debug for HostHeaderConditionConfig
source§impl PartialEq<HostHeaderConditionConfig> for HostHeaderConditionConfig
impl PartialEq<HostHeaderConditionConfig> for HostHeaderConditionConfig
source§fn eq(&self, other: &HostHeaderConditionConfig) -> bool
fn eq(&self, other: &HostHeaderConditionConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.