Struct sgx_tstd::untrusted::fs::Permissions [−][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
[src]
impl Permissions
pub fn readonly(&self) -> bool
[src]
pub fn readonly(&self) -> bool
Returns whether these permissions describe a readonly (unwritable) file.
pub fn set_readonly(&mut self, readonly: bool)
[src]
pub fn set_readonly(&mut self, readonly: bool)
Modifies the readonly flag for this set of permissions. If the
readonly
argument is true
, using the resulting Permission
will
update file permissions to forbid writing. Conversely, if it's false
,
using the resulting Permission
will update file permissions to allow
writing.
This operation does not modify the filesystem. To modify the
filesystem use the fs::set_permissions
function.
Trait Implementations
impl PermissionsExt for Permissions
[src]
impl PermissionsExt for Permissions
fn mode(&self) -> u32
[src]
fn mode(&self) -> u32
Returns the underlying raw st_mode
bits that contain the standard Unix permissions for this file. Read more
fn set_mode(&mut self, mode: u32)
[src]
fn set_mode(&mut self, mode: u32)
Sets the underlying raw bits for this set of permissions.
fn from_mode(mode: u32) -> Permissions
[src]
fn from_mode(mode: u32) -> Permissions
Creates a new instance of Permissions
from the given set of Unix permission bits. Read more
impl Clone for Permissions
[src]
impl Clone for Permissions
fn clone(&self) -> Permissions
[src]
fn clone(&self) -> Permissions
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl PartialEq for Permissions
[src]
impl PartialEq for Permissions
fn eq(&self, other: &Permissions) -> bool
[src]
fn eq(&self, other: &Permissions) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Permissions) -> bool
[src]
fn ne(&self, other: &Permissions) -> bool
This method tests for !=
.
impl Eq for Permissions
[src]
impl Eq for Permissions
impl Debug for Permissions
[src]
impl Debug for Permissions
Auto Trait Implementations
impl Send for Permissions
impl Send for Permissions
impl Sync for Permissions
impl Sync for Permissions