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
sourceimpl Clone for NetworkPolicyPort
impl Clone for NetworkPolicyPort
sourcefn clone(&self) -> NetworkPolicyPort
fn clone(&self) -> NetworkPolicyPort
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NetworkPolicyPort
impl Debug for NetworkPolicyPort
sourceimpl DeepMerge for NetworkPolicyPort
impl DeepMerge for NetworkPolicyPort
sourcefn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge other
into self
.
sourceimpl Default for NetworkPolicyPort
impl Default for NetworkPolicyPort
sourcefn default() -> NetworkPolicyPort
fn default() -> NetworkPolicyPort
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for NetworkPolicyPort
impl<'de> Deserialize<'de> for NetworkPolicyPort
sourcefn 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
sourceimpl PartialEq<NetworkPolicyPort> for NetworkPolicyPort
impl PartialEq<NetworkPolicyPort> for NetworkPolicyPort
sourcefn 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 ==
. Read more
sourceimpl Serialize for NetworkPolicyPort
impl Serialize for NetworkPolicyPort
impl StructuralPartialEq for NetworkPolicyPort
Auto Trait Implementations
impl RefUnwindSafe for NetworkPolicyPort
impl Send for NetworkPolicyPort
impl Sync for NetworkPolicyPort
impl Unpin for NetworkPolicyPort
impl UnwindSafe for NetworkPolicyPort
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more