[][src]Struct openshift_openapi::api::route::v1::RouteIngress

pub struct RouteIngress {
    pub conditions: Option<Vec<RouteIngressCondition>>,
    pub host: Option<String>,
    pub router_canonical_hostname: Option<String>,
    pub router_name: Option<String>,
    pub wildcard_policy: Option<String>,
}

RouteIngress holds information about the places where a route is exposed.

Fields

conditions: Option<Vec<RouteIngressCondition>>

Conditions is the state of the route, may be empty.

host: Option<String>

Host is the host string under which the route is exposed; this value is required

router_canonical_hostname: Option<String>

CanonicalHostname is the external host name for the router that can be used as a CNAME for the host requested for this route. This value is optional and may not be set in all cases.

router_name: Option<String>

Name is a name chosen by the router to identify itself; this value is required

wildcard_policy: Option<String>

Wildcard policy is the wildcard policy that was allowed where this route is exposed.

Trait Implementations

impl Clone for RouteIngress[src]

impl Debug for RouteIngress[src]

impl Default for RouteIngress[src]

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

impl PartialEq<RouteIngress> for RouteIngress[src]

impl Serialize for RouteIngress[src]

impl StructuralPartialEq for RouteIngress[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.