Struct k8s_openapi::v1_8::api::extensions::v1beta1::IngressBackend[][src]

pub struct IngressBackend {
    pub service_name: String,
    pub service_port: IntOrString,
}

IngressBackend describes all endpoints for a given service and port.

Fields

Specifies the name of the referenced service.

Specifies the port of the referenced service.

Trait Implementations

impl Clone for IngressBackend
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IngressBackend
[src]

Formats the value using the given formatter. Read more

impl Default for IngressBackend
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for IngressBackend
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations