Struct zone::Net[][src]

pub struct Net {
    pub physical: String,
    pub address: Option<String>,
    pub allowed_address: Option<String>,
    pub default_router: Option<String>,
}

Fields

physical: String

Network interface name (format matching ifconfig(1M)).

address: Option<String>

Network address of the network interface.

Must be set for a shared-IP zone. Should not be set for exclusive-IP zones.

allowed_address: Option<String>

If set, the zone administrator will only be able to configure the interface with the specified address.

Should not be shared for shared-IP zone.

default_router: Option<String>

The default router.

Optional for a shared-IP zone. Should not be set for exclusive-IP zones.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.