Struct k8s_openapi::v1_8::api::core::v1::LoadBalancerStatus[][src]

pub struct LoadBalancerStatus {
    pub ingress: Option<Vec<LoadBalancerIngress>>,
}

LoadBalancerStatus represents the status of a load-balancer.

Fields

Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.

Trait Implementations

impl Clone for LoadBalancerStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LoadBalancerStatus
[src]

Formats the value using the given formatter. Read more

impl Default for LoadBalancerStatus
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for LoadBalancerStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations