Struct k8s_openapi::api::networking::v1::IngressPortStatus
source · pub struct IngressPortStatus {
pub error: Option<String>,
pub port: i32,
pub protocol: String,
}
Expand description
IngressPortStatus represents the error condition of a service port
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 ingress port.
protocol: String
protocol is the protocol of the ingress port. The supported values are: “TCP”, “UDP”, “SCTP”
Trait Implementations§
source§impl Clone for IngressPortStatus
impl Clone for IngressPortStatus
source§fn clone(&self) -> IngressPortStatus
fn clone(&self) -> IngressPortStatus
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for IngressPortStatus
impl Debug for IngressPortStatus
source§impl DeepMerge for IngressPortStatus
impl DeepMerge for IngressPortStatus
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for IngressPortStatus
impl Default for IngressPortStatus
source§fn default() -> IngressPortStatus
fn default() -> IngressPortStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IngressPortStatus
impl<'de> Deserialize<'de> for IngressPortStatus
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for IngressPortStatus
impl PartialEq for IngressPortStatus
source§impl Serialize for IngressPortStatus
impl Serialize for IngressPortStatus
impl StructuralPartialEq for IngressPortStatus
Auto Trait Implementations§
impl Freeze for IngressPortStatus
impl RefUnwindSafe for IngressPortStatus
impl Send for IngressPortStatus
impl Sync for IngressPortStatus
impl Unpin for IngressPortStatus
impl UnwindSafe for IngressPortStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)