[][src]Struct dfw::types::ContainerToWiderWorld

pub struct ContainerToWiderWorld {
    pub default_policy: RuleVerdict,
    pub rules: Option<Vec<ContainerToWiderWorldRule>>,
}

The container-to-wider-world section, defining how containers can communicate with the wider world.

Fields

default_policy: RuleVerdict

The default_policy defines the default for when there is not a specific rule.

rules: Option<Vec<ContainerToWiderWorldRule>>

An optional list of rules, see ContainerToWiderWorldRule.

Example

The easiest way to define the rules is using TOMLs arrays of tables:

[container_to_wider_world]
default_policy = "drop"

[[container_to_wider_world.rules]]
# first rule here
[[container_to_wider_world.rules]]
# second rule here

Trait Implementations

impl Clone for ContainerToWiderWorld[src]

impl Debug for ContainerToWiderWorld[src]

impl<'de> Deserialize<'de> for ContainerToWiderWorld[src]

impl Eq for ContainerToWiderWorld[src]

impl Hash for ContainerToWiderWorld[src]

impl PartialEq<ContainerToWiderWorld> for ContainerToWiderWorld[src]

impl Process<Iptables> for ContainerToWiderWorld[src]

impl Process<Nftables> for ContainerToWiderWorld[src]

impl StructuralEq for ContainerToWiderWorld[src]

impl StructuralPartialEq for ContainerToWiderWorld[src]

Auto Trait Implementations

impl RefUnwindSafe for ContainerToWiderWorld

impl Send for ContainerToWiderWorld

impl Sync for ContainerToWiderWorld

impl Unpin for ContainerToWiderWorld

impl UnwindSafe for ContainerToWiderWorld

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,