Struct cap_primitives::fs::Permissions

source ·
pub struct Permissions { /* private fields */ }
Expand description

Representation of the various permissions on a file.

This corresponds to std::fs::Permissions.

We need to define our own version because the libstd `Permissions` doesn't have a public constructor that we can use.

Implementations§

source§

impl Permissions

source

pub fn from_std(std: Permissions) -> Self

Constructs a new instance of Self from the given std::fs::Permissions.

source

pub fn into_std(self, file: &File) -> Result<Permissions>

Consumes self and produces a new instance of std::fs::Permissions.

The `file` parameter works around the fact that we can't construct a `Permissions` object ourselves on Windows.
source

pub const fn readonly(&self) -> bool

Returns true if these permissions describe a readonly (unwritable) file.

This corresponds to std::fs::Permissions::readonly.

source

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§

source§

impl Clone for Permissions

source§

fn clone(&self) -> Permissions

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for Permissions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for Permissions

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PermissionsExt for Permissions

source§

fn mode(&self) -> u32

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

fn set_mode(&mut self, mode: u32)

Sets the underlying raw bits for this set of permissions.
source§

fn from_mode(mode: u32) -> Self

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

impl Eq for Permissions

source§

impl StructuralPartialEq for Permissions

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.