[][src]Struct async_std::fs::Permissions

pub struct Permissions { /* fields omitted */ }

A set of permissions on a file or directory.

This type is a re-export of std::fs::Permissions.

Implementations

impl Permissions[src]

pub fn readonly(&self) -> bool[src]

Returns the read-only flag.

Examples

use async_std::fs;

let perm = fs::metadata("a.txt").await?.permissions();
println!("{:?}", perm.readonly());

pub fn set_readonly(&mut self, readonly: bool)[src]

Configures the read-only flag.

Examples

use async_std::fs;

let mut perm = fs::metadata("a.txt").await?.permissions();
perm.set_readonly(true);
fs::set_permissions("a.txt", perm).await?;

Trait Implementations

impl Clone for Permissions[src]

impl Debug for Permissions[src]

impl Eq for Permissions[src]

impl PartialEq<Permissions> for Permissions[src]

impl StructuralEq for Permissions[src]

impl StructuralPartialEq for Permissions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.