Module cchmod::perm[][src]

Expand description

Perm value constants.

Constants

Permission ---, equivalent to Perm { read: false, write: false, execute: false }.

Permission r--, equivalent to Perm { read: true, write: false, execute: false }.

Permission rw-, equivalent to Perm { read: true, write: true, execute: false }.

Permission rwx, equivalent to Perm { read: true, write: true, execute: true }.

Permission r-x, equivalent to Perm { read: true, write: false, execute: true }.

Permission -w-, equivalent to Perm { read: false, write: true, execute: false }.

Permission -wx, equivalent to Perm { read: false, write: true, execute: true }.

Permission --x, equivalent to Perm { read: false, write: false, execute: true }.

See EMPTY.

See X.

See W.

See WX.

See R.

See RX.

See RW.

See RWX.