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

pub struct HTTPIngressPath {
    pub backend: IngressBackend,
    pub path: Option<String>,
}

HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

Fields

backend: IngressBackend

Backend defines the referenced service endpoint to which the traffic will be forwarded to.

path: Option<String>

Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.

Trait Implementations

impl PartialEq<HTTPIngressPath> for HTTPIngressPath[src]

impl Default for HTTPIngressPath[src]

impl Clone for HTTPIngressPath[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HTTPIngressPath[src]

impl Serialize for HTTPIngressPath[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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