[][src]Enum path_abs::PathType

pub enum PathType {
    File(PathFile),
    Dir(PathDir),
}

An an enum containing either a file or a directory.

This is used primarily for:

  • The items returned from PathDir::list
  • Serializing paths of different types.

Note that for symlinks, this returns the underlying file type.

Variants

File(PathFile)Dir(PathDir)

Methods

impl PathType[src]

pub fn new<P: AsRef<Path>>(path: P) -> Result<PathType>[src]

Resolves and returns the PathType of the given path.

If the path exists but is not a file or a directory (i.e. is a symlink), then io::ErrorKind::InvalidInput is returned.

Examples

use path_abs::PathType;

let src = PathType::new("src")?;

pub fn try_from<P: Into<PathAbs>>(path: P) -> Result<PathType>[src]

Consume the PathAbs returning the PathType.

pub fn unwrap_file(self) -> PathFile[src]

Unwrap the PathType as a PathFile.

Examples

use path_abs::PathType;

let lib = PathType::new("src/lib.rs")?.unwrap_file();

pub fn unwrap_dir(self) -> PathDir[src]

Unwrap the PathType as a PathDir.

Examples

use path_abs::PathType;

let src = PathType::new("src")?.unwrap_dir();

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

Return whether this variant is PathType::Dir.

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

Return whether this variant is PathType::File.

Trait Implementations

impl PathOps for PathType[src]

type Output = PathAbs

impl From<PathType> for PathAbs[src]

impl From<PathType> for Arc<PathBuf>[src]

impl From<PathType> for PathBuf[src]

impl PartialEq<PathType> for PathType[src]

impl Clone for PathType[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl AsRef<OsStr> for PathType[src]

impl AsRef<PathAbs> for PathType[src]

impl AsRef<Path> for PathType[src]

impl AsRef<PathBuf> for PathType[src]

impl PartialOrd<PathType> for PathType[src]

impl Eq for PathType[src]

impl Ord for PathType[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Debug for PathType[src]

impl Hash for PathType[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Borrow<PathAbs> for PathType[src]

impl Borrow<Path> for PathType[src]

impl Borrow<PathBuf> for PathType[src]

impl<'a> Borrow<PathAbs> for &'a PathType[src]

impl<'a> Borrow<Path> for &'a PathType[src]

impl<'a> Borrow<PathBuf> for &'a PathType[src]

impl Serialize for PathType[src]

impl<'de> Deserialize<'de> for PathType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToStfu8 for T where
    T: Borrow<PathBuf>, 
[src]

impl<T> PathInfo for T where
    T: Clone + Borrow<PathBuf> + Into<Arc<PathBuf>>, 
[src]

fn as_os_str(&self) -> &OsStr[src]

fn to_str(&self) -> Option<&str>[src]

fn to_string_lossy(&self) -> Cow<str>[src]

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

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

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

fn ancestors(&self) -> Ancestors[src]

fn file_name(&self) -> Option<&OsStr>[src]

fn strip_prefix<P>(&self, base: P) -> Result<&Path, StripPrefixError> where
    P: AsRef<Path>, 
[src]

fn starts_with<P: AsRef<Path>>(&self, base: P) -> bool[src]

fn ends_with<P: AsRef<Path>>(&self, base: P) -> bool[src]

fn file_stem(&self) -> Option<&OsStr>[src]

fn extension(&self) -> Option<&OsStr>[src]

fn components(&self) -> Components[src]

fn iter(&self) -> Iter[src]

fn display(&self) -> Display[src]

fn metadata(&self) -> Result<Metadata>[src]

Queries the file system to get information about a file, directory, etc. Read more

Queries the metadata about a file without following symlinks. Read more

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

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

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

Reads a symbolic link, returning the path that the link points to. Read more

fn canonicalize(&self) -> Result<PathAbs>[src]

Returns the canonical, absolute form of the path with all intermediate components normalized and symbolic links resolved. Read more

fn parent(&self) -> Result<&Path>[src]

Returns the path without its final component, if there is one. Read more

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]