Struct std::fs::PermissionsUnstable [-] [+] [src]

pub struct Permissions(_);

Representation of the various permissions on a file.

This module only currently provides one bit of information, readonly, which is exposed on all currently supported platforms. Unix-specific functionality, such as mode bits, is available through the os::unix::PermissionsExt trait.

Methods

impl Permissions

fn readonly(&self) -> bool

Returns whether these permissions describe a readonly file.

fn set_readonly(&mut self, readonly: bool)

Modify the readonly flag for this set of permissions.

This operation does not modify the filesystem. To modify the filesystem use the fs::set_permissions function.

Trait Implementations

impl PermissionsExt for Permissions

fn set_mode(&mut self, mode: i32)

impl PermissionsExt for Permissions

fn set_mode(&mut self, mode: i32)

Derived Implementations

impl Debug for Permissions

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Eq for Permissions

impl PartialEq for Permissions

fn eq(&self, __arg_0: &Permissions) -> bool

fn ne(&self, __arg_0: &Permissions) -> bool

impl Clone for Permissions

fn clone(&self) -> Permissions

fn clone_from(&mut self, source: &Self)