Struct k8s_openapi::api::networking::v1::HTTPIngressRuleValue
source · pub struct HTTPIngressRuleValue {
pub paths: Vec<HTTPIngressPath>,
}
Expand description
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last ‘/’ and before the first ‘?’ or ‘#’.
Fields§
§paths: Vec<HTTPIngressPath>
A collection of paths that map requests to backends.
Trait Implementations§
source§impl Clone for HTTPIngressRuleValue
impl Clone for HTTPIngressRuleValue
source§fn clone(&self) -> HTTPIngressRuleValue
fn clone(&self) -> HTTPIngressRuleValue
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 HTTPIngressRuleValue
impl Debug for HTTPIngressRuleValue
source§impl DeepMerge for HTTPIngressRuleValue
impl DeepMerge for HTTPIngressRuleValue
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for HTTPIngressRuleValue
impl Default for HTTPIngressRuleValue
source§fn default() -> HTTPIngressRuleValue
fn default() -> HTTPIngressRuleValue
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for HTTPIngressRuleValue
impl<'de> Deserialize<'de> for HTTPIngressRuleValue
source§fn 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
source§impl PartialEq<HTTPIngressRuleValue> for HTTPIngressRuleValue
impl PartialEq<HTTPIngressRuleValue> for HTTPIngressRuleValue
source§fn eq(&self, other: &HTTPIngressRuleValue) -> bool
fn eq(&self, other: &HTTPIngressRuleValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.