pub struct Permissions(_);
Expand description

Representation of the various permissions on a file.

Implementations

Create a new permissions object with zero permissions set.

Tests whether set-user-id bit is set.

Modify the set-user-id bit.

Tests whether set-group-id bit is set.

Modify the set-group-id bit.

Tests whether set-sticky-bit bit is set.

Modify the set-sticky-bit bit.

Tests whether read by owner bit is set.

Modify the read by owner bit.

Tests whether write by owner bit is set.

Modify the write by owner bit.

Tests whether execute by owner bit is set.

Modify the execute by owner bit.

Tests whether read by group bit is set.

Modify the read by group bit.

Tests whether write by group bit is set.

Modify the write by group bit.

Tests whether execute by group bit is set.

Modify the execute by group bit.

Tests whether read by other bit is set.

Modify the read by other bit.

Tests whether write by other bit is set.

Modify the write by other bit.

Tests whether execute by other bit is set.

Modify the execute by other bit.

Returns true if these permissions describe an unwritable file that no one can write to.

Modifies the readonly flag for this set of permissions.

If the readonly argument is true, it will remove write permissions from all parties.

Conversely, if it’s false, it will permit writing from all parties.

This operation does not modify the filesystem.

To modify the filesystem use the super::fs::Fs::set_permissions or the super::file::File::set_permissions function.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.