Enum docker_compose::v2::PidMode [] [src]

pub enum PidMode {
    Host,
    Container(String),
}

What process ID namespace should we use?

Variants

Use the host's PID namespace.

Use the named container's PID namespace.

Trait Implementations

impl Debug for PidMode
[src]

Formats the value using the given formatter.

impl Clone for PidMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PidMode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for PidMode
[src]

impl Display for PidMode
[src]

Formats the value using the given formatter.

impl FromStr for PidMode
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more