Struct k8s_openapi::api::networking::v1::NetworkPolicyPort
source · pub struct NetworkPolicyPort {
pub end_port: Option<i32>,
pub port: Option<IntOrString>,
pub protocol: Option<String>,
}
Expand description
NetworkPolicyPort describes a port to allow traffic on
Fields§
§end_port: Option<i32>
If set, indicates that the range of ports from port to endPort, inclusive, should be allowed by the policy. This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port. The endPort must be equal or greater than port.
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. If present, only traffic on the specified protocol AND port will be matched.
protocol: Option<String>
The protocol (TCP, UDP, or SCTP) 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 DeepMerge for NetworkPolicyPort
impl DeepMerge for NetworkPolicyPort
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.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
source§impl PartialEq<NetworkPolicyPort> for NetworkPolicyPort
impl PartialEq<NetworkPolicyPort> for NetworkPolicyPort
source§fn eq(&self, other: &NetworkPolicyPort) -> bool
fn eq(&self, other: &NetworkPolicyPort) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.