Struct k8s_openapi::v1_8::api::extensions::v1beta1::HTTPIngressRuleValue[][src]

pub struct HTTPIngressRuleValue {
    pub paths: Vec<HTTPIngressPath>,
}

HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> 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

A collection of paths that map requests to backends.

Trait Implementations

impl Clone for HTTPIngressRuleValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HTTPIngressRuleValue
[src]

Formats the value using the given formatter. Read more

impl Default for HTTPIngressRuleValue
[src]

Returns the "default value" for a type. Read more

impl PartialEq for HTTPIngressRuleValue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for HTTPIngressRuleValue
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for HTTPIngressRuleValue
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations