Struct cap_std::fs::Permissions
source · [−]pub struct Permissions { /* private fields */ }
Expand description
Representation of the various permissions on a file.
This corresponds to std::fs::Permissions
.
Implementations
sourceimpl Permissions
impl Permissions
sourcepub fn from_std(std: Permissions) -> Permissions
pub fn from_std(std: Permissions) -> Permissions
Constructs a new instance of Self
from the given
std::fs::Permissions
.
sourcepub fn into_std(self, file: &File) -> Result<Permissions, Error>
pub fn into_std(self, file: &File) -> Result<Permissions, Error>
Consumes self
and produces a new instance of std::fs::Permissions
.
sourcepub const fn readonly(&self) -> bool
pub const fn readonly(&self) -> bool
Returns true
if these permissions describe a readonly (unwritable)
file.
This corresponds to std::fs::Permissions::readonly
.
sourcepub fn set_readonly(&mut self, readonly: bool)
pub fn set_readonly(&mut self, readonly: bool)
Modifies the readonly flag for this set of permissions.
This corresponds to std::fs::Permissions::set_readonly
.
Trait Implementations
sourceimpl Clone for Permissions
impl Clone for Permissions
sourcefn clone(&self) -> Permissions
fn clone(&self) -> Permissions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Permissions
impl Debug for Permissions
sourceimpl PartialEq<Permissions> for Permissions
impl PartialEq<Permissions> for Permissions
sourcefn eq(&self, other: &Permissions) -> bool
fn eq(&self, other: &Permissions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Permissions) -> bool
fn ne(&self, other: &Permissions) -> bool
This method tests for !=
.
sourceimpl PermissionsExt for Permissions
impl PermissionsExt for Permissions
sourcefn mode(&self) -> u32
fn mode(&self) -> u32
Returns the underlying raw st_mode
bits that contain the standard
Unix permissions for this file. Read more
sourcefn set_mode(&mut self, mode: u32)
fn set_mode(&mut self, mode: u32)
Sets the underlying raw bits for this set of permissions. Read more
sourcefn from_mode(mode: u32) -> Permissions
fn from_mode(mode: u32) -> Permissions
Creates a new instance of Permissions
from the given set of Unix
permission bits. Read more
impl Eq for Permissions
impl StructuralEq for Permissions
impl StructuralPartialEq for Permissions
Auto Trait Implementations
impl RefUnwindSafe for Permissions
impl Send for Permissions
impl Sync for Permissions
impl Unpin for Permissions
impl UnwindSafe for Permissions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more