pub struct ContainerPort {
pub container_port: Option<i32>,
pub host_ip: Option<String>,
pub host_port: Option<i32>,
pub name: Option<String>,
pub protocol: Option<String>,
}Fields§
§container_port: Option<i32>Number of port to expose on the pod’s IP address. This must be a valid port number, 0 < x < 65536.
host_ip: Option<String>What host IP to bind the external port to. +optional
host_port: Option<i32>Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. +optional
name: Option<String>If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. +optional
protocol: Option<String>+enum
Implementations§
Source§impl ContainerPort
impl ContainerPort
pub fn new() -> ContainerPort
Trait Implementations§
Source§impl Clone for ContainerPort
impl Clone for ContainerPort
Source§fn clone(&self) -> ContainerPort
fn clone(&self) -> ContainerPort
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ContainerPort
impl Debug for ContainerPort
Source§impl<'de> Deserialize<'de> for ContainerPort
impl<'de> Deserialize<'de> for ContainerPort
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>,
Source§impl FromStr for ContainerPort
Converts Query Parameters representation (style=form, explode=false) to a ContainerPort value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for ContainerPort
Converts Query Parameters representation (style=form, explode=false) to a ContainerPort value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for ContainerPort
impl PartialEq for ContainerPort
Source§impl Serialize for ContainerPort
impl Serialize for ContainerPort
Source§impl ToString for ContainerPort
Converts the ContainerPort value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for ContainerPort
Converts the ContainerPort value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer