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

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

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

impl Clone for HTTPIngressRuleValue[src]

impl Debug for HTTPIngressRuleValue[src]

impl Default for HTTPIngressRuleValue[src]

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

impl PartialEq<HTTPIngressRuleValue> for HTTPIngressRuleValue[src]

impl Serialize for HTTPIngressRuleValue[src]

impl StructuralPartialEq for HTTPIngressRuleValue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.