Struct k8s_openapi::v1_9::api::networking::v1::NetworkPolicyPort
source · pub struct NetworkPolicyPort {
pub port: Option<IntOrString>,
pub protocol: Option<String>,
}
Expand description
NetworkPolicyPort describes a port to allow traffic on
Fields§
§port: Option<IntOrString>
The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers.
protocol: Option<String>
The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.
Trait Implementations§
source§impl Clone for NetworkPolicyPort
impl Clone for NetworkPolicyPort
source§fn clone(&self) -> NetworkPolicyPort
fn clone(&self) -> NetworkPolicyPort
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 NetworkPolicyPort
impl Debug for NetworkPolicyPort
source§impl Default for NetworkPolicyPort
impl Default for NetworkPolicyPort
source§fn default() -> NetworkPolicyPort
fn default() -> NetworkPolicyPort
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for NetworkPolicyPort
impl<'de> Deserialize<'de> for NetworkPolicyPort
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