Trait sgx_tstd::os::unix::fs::PermissionsExt[][src]

pub trait PermissionsExt {
    fn mode(&self) -> u32;
fn set_mode(&mut self, mode: u32);
fn from_mode(mode: u32) -> Self; }

Unix-specific extensions to Permissions

Required Methods

Returns the underlying raw st_mode bits that contain the standard Unix permissions for this file.

Sets the underlying raw bits for this set of permissions.

Creates a new instance of Permissions from the given set of Unix permission bits.

Implementors