Struct lsm::NfsExport [] [src]

pub struct NfsExport {
    pub id: String,
    pub fs_id: String,
    pub export_path: String,
    pub auth: String,
    pub root: Vec<String>,
    pub rw: Vec<String>,
    pub ro: Vec<String>,
    pub anonuid: i64,
    pub anongid: i64,
    pub options: String,
    // some fields omitted
}

Fields

Identifier.

Identifier of file system.

NFS export path.

NFS authentication type.

Host list with root access.

Host list with read and write access.

Host list with read only access.

User ID for anonymous access.

Group ID for anonymous access.

NFS extra options.

Methods

impl NfsExport
[src]

ANON_UID_GID_NA: i64 = -1

Default user and group ID for anonymous access.

Trait Implementations

impl Debug for NfsExport
[src]

[src]

Formats the value using the given formatter.

impl Clone for NfsExport
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more