[][src]Struct k8s_openapi::api::core::v1::EndpointPort

pub struct EndpointPort {
    pub name: Option<String>,
    pub port: i32,
    pub protocol: Option<String>,
}

EndpointPort is a tuple that describes a single port.

Fields

name: Option<String>

The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.

port: i32

The port number of the endpoint.

protocol: Option<String>

The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.

Trait Implementations

impl PartialEq<EndpointPort> for EndpointPort[src]

impl Default for EndpointPort[src]

impl Clone for EndpointPort[src]

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

Performs copy-assignment from source. Read more

impl Debug for EndpointPort[src]

impl Serialize for EndpointPort[src]

impl<'de> Deserialize<'de> for EndpointPort[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]