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

impl Default for Net[src]

Auto Trait Implementations

impl RefUnwindSafe for Net

impl Send for Net

impl Sync for Net

impl Unpin for Net

impl UnwindSafe for Net

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> From<T> for T[src]

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

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.