Trait is_executable::IsExecutable[][src]

pub trait IsExecutable {
    fn is_executable(&self) -> bool;
}

An extension trait for std::fs::Path providing an is_executable method.

See the module documentation for examples.

Required methods

fn is_executable(&self) -> bool[src]

Returns true if there is a file at the given path and it is executable. Returns false otherwise.

See the module documentation for details.

Loading content...

Implementations on Foreign Types

impl IsExecutable for Path[src]

Loading content...

Implementors

Loading content...