Enum zone::IpType[][src]

pub enum IpType {
    Shared,
    Exclusive,
}

Identifies the source of a zone’s IP stack.

Variants

Shared

The IP stack is shared with thte global zone.

Exclusive

The IP stack is to be instantiated exclusively to the zone.

Trait Implementations

impl Display for IpType[src]

Auto Trait Implementations

impl RefUnwindSafe for IpType

impl Send for IpType

impl Sync for IpType

impl Unpin for IpType

impl UnwindSafe for IpType

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> ToString for T where
    T: Display + ?Sized
[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.