Struct zone::Fs[][src]

pub struct Fs {
    pub ty: String,
    pub dir: String,
    pub special: String,
    pub raw: Option<String>,
    pub options: Vec<String>,
}

Values for the resource “fs”.

Fields

ty: String

Type of filesystem mounted within the zone.

dir: String

Directory (in the zone) where the filesystem will be mounted.

special: String

Directory (in the GZ) which will be mounted into the zone.

raw: Option<String>options: Vec<String>

Trait Implementations

impl Default for Fs[src]

Auto Trait Implementations

impl RefUnwindSafe for Fs

impl Send for Fs

impl Sync for Fs

impl Unpin for Fs

impl UnwindSafe for Fs

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.