1.0.0[−][src]Struct std::fs::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 Permissionspub fn readonly(&self) -> bool[src]
pub fn readonly(&self) -> boolReturns whether these permissions describe a readonly (unwritable) file.
Examples
use std::fs::File; fn main() -> std::io::Result<()> { let mut f = File::create("foo.txt")?; let metadata = f.metadata()?; assert_eq!(false, metadata.permissions().readonly()); Ok(()) }Run
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.
Examples
use std::fs::File; fn main() -> std::io::Result<()> { let f = File::create("foo.txt")?; let metadata = f.metadata()?; let mut permissions = metadata.permissions(); permissions.set_readonly(true); // filesystem doesn't change assert_eq!(false, metadata.permissions().readonly()); // just this particular `permissions`. assert_eq!(true, permissions.readonly()); Ok(()) }Run
Trait Implementations
impl PermissionsExt for Permissions1.1.0[src]
impl PermissionsExt for Permissionsfn mode(&self) -> u32[src]
fn mode(&self) -> u32Returns 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. Read more
fn from_mode(mode: u32) -> Permissions[src]
fn from_mode(mode: u32) -> PermissionsCreates a new instance of Permissions from the given set of Unix permission bits. Read more
impl PartialEq<Permissions> for Permissions[src]
impl PartialEq<Permissions> for Permissionsfn eq(&self, other: &Permissions) -> bool[src]
fn eq(&self, other: &Permissions) -> boolThis 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) -> boolThis method tests for !=.
impl Eq for Permissions[src]
impl Eq for Permissionsimpl Debug for Permissions[src]
impl Debug for Permissionsfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Permissions[src]
impl Clone for Permissionsfn clone(&self) -> Permissions[src]
fn clone(&self) -> PermissionsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for Permissions
impl Send for Permissionsimpl Sync for Permissions
impl Sync for PermissionsBlanket Implementations
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>Performs the conversion.
impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>Performs the conversion.
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, ⓘImportant traits for &'a mut Ifn borrow(&self) -> &T[src]
fn borrow(&self) -> &TImmutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, ⓘImportant traits for &'a mut Ifn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id #27745)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more