Struct k8s_openapi::api::networking::v1::NetworkPolicyEgressRule
source · pub struct NetworkPolicyEgressRule {
pub ports: Option<Vec<NetworkPolicyPort>>,
pub to: Option<Vec<NetworkPolicyPeer>>,
}
Expand description
NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec’s podSelector. The traffic must match both ports and to. This type is beta-level in 1.8
Fields§
§ports: Option<Vec<NetworkPolicyPort>>
ports is a list of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.
to: Option<Vec<NetworkPolicyPeer>>
to is a list of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.
Trait Implementations§
source§impl Clone for NetworkPolicyEgressRule
impl Clone for NetworkPolicyEgressRule
source§fn clone(&self) -> NetworkPolicyEgressRule
fn clone(&self) -> NetworkPolicyEgressRule
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NetworkPolicyEgressRule
impl Debug for NetworkPolicyEgressRule
source§impl DeepMerge for NetworkPolicyEgressRule
impl DeepMerge for NetworkPolicyEgressRule
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for NetworkPolicyEgressRule
impl Default for NetworkPolicyEgressRule
source§fn default() -> NetworkPolicyEgressRule
fn default() -> NetworkPolicyEgressRule
source§impl<'de> Deserialize<'de> for NetworkPolicyEgressRule
impl<'de> Deserialize<'de> for NetworkPolicyEgressRule
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 PartialEq for NetworkPolicyEgressRule
impl PartialEq for NetworkPolicyEgressRule
source§impl Serialize for NetworkPolicyEgressRule
impl Serialize for NetworkPolicyEgressRule
impl StructuralPartialEq for NetworkPolicyEgressRule
Auto Trait Implementations§
impl Freeze for NetworkPolicyEgressRule
impl RefUnwindSafe for NetworkPolicyEgressRule
impl Send for NetworkPolicyEgressRule
impl Sync for NetworkPolicyEgressRule
impl Unpin for NetworkPolicyEgressRule
impl UnwindSafe for NetworkPolicyEgressRule
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
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)
clone_to_uninit
)