Struct k8s_openapi::v1_9::api::core::v1::LoadBalancerIngress[][src]

pub struct LoadBalancerIngress {
    pub hostname: Option<String>,
    pub ip: Option<String>,
}

LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

Fields

Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)

Trait Implementations

impl Clone for LoadBalancerIngress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LoadBalancerIngress
[src]

Formats the value using the given formatter. Read more

impl Default for LoadBalancerIngress
[src]

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

impl PartialEq for LoadBalancerIngress
[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 LoadBalancerIngress
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for LoadBalancerIngress
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations