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

pub struct PortStatus {
    pub error: Option<String>,
    pub port: i32,
    pub protocol: String,
}

Fields

error: Option<String>

Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use CamelCase names

  • cloud provider specific error values must have names that comply with the format foo.example.com/CamelCase.
port: i32

Port is the port number of the service port of which status is recorded here

protocol: String

Protocol is the protocol of the service port of which status is recorded here The supported values are: "TCP", "UDP", "SCTP"

Trait Implementations

impl Clone for PortStatus[src]

impl Debug for PortStatus[src]

impl Default for PortStatus[src]

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

impl PartialEq<PortStatus> for PortStatus[src]

impl Serialize for PortStatus[src]

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