Struct compose_yml::v2::ExternalNetwork [] [src]

pub struct ExternalNetwork {
    pub name: Option<RawOr<String>>,
    // some fields omitted
}

Information about an external network.

Fields

The external name of this network, if it's different from the internal name we refer to as.

Trait Implementations

impl Debug for ExternalNetwork
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ExternalNetwork
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ExternalNetwork
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for ExternalNetwork
[src]

impl Default for ExternalNetwork
[src]

[src]

Returns the "default value" for a type. Read more

impl InterpolateAll for ExternalNetwork
[src]

Recursive merge all fields in the structure.

[src]

Recursively walk over this type, interpolating all RawOr values containing references to the environment. The default implementation leaves a value unchanged. Read more

impl MergeOverride for ExternalNetwork
[src]

Recursive merge all fields in the structure.

[src]

Given this value and an override value, merge the override value into this one, producing a new value. Read more

Auto Trait Implementations