Enum camino::Utf8Component[][src]

pub enum Utf8Component<'a> {
    Prefix(Utf8PrefixComponent<'a>),
    RootDir,
    CurDir,
    ParentDir,
    Normal(&'a str),
}

A single component of a path.

A Utf8Component roughly corresponds to a substring between path separators (/ or \).

This enum is created by iterating over Utf8Components, which in turn is created by the components method on Utf8Path.

Examples

use camino::{Utf8Component, Utf8Path};

let path = Utf8Path::new("/tmp/foo/bar.txt");
let components = path.components().collect::<Vec<_>>();
assert_eq!(&components, &[
    Utf8Component::RootDir,
    Utf8Component::Normal("tmp"),
    Utf8Component::Normal("foo"),
    Utf8Component::Normal("bar.txt"),
]);

Variants

A Windows path prefix, e.g., C: or \\server\share.

There is a large variety of prefix types, see Utf8Prefix’s documentation for more.

Does not occur on Unix.

RootDir

The root directory component, appears after any prefix and before anything else.

It represents a separator that designates that a path starts from root.

CurDir

A reference to the current directory, i.e., ..

ParentDir

A reference to the parent directory, i.e., ...

Normal(&'a str)

A normal component, e.g., a and b in a/b.

This variant is the most common one, it represents references to files or directories.

Implementations

impl<'a> Utf8Component<'a>[src]

pub fn as_str(&self) -> &'a str[src]

Extracts the underlying str slice.

Examples

use camino::Utf8Path;

let path = Utf8Path::new("./tmp/foo/bar.txt");
let components: Vec<_> = path.components().map(|comp| comp.as_str()).collect();
assert_eq!(&components, &[".", "tmp", "foo", "bar.txt"]);

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

Extracts the underlying OsStr slice.

Examples

use camino::Utf8Path;

let path = Utf8Path::new("./tmp/foo/bar.txt");
let components: Vec<_> = path.components().map(|comp| comp.as_os_str()).collect();
assert_eq!(&components, &[".", "tmp", "foo", "bar.txt"]);

Trait Implementations

impl<'a> Clone for Utf8Component<'a>[src]

impl<'a> Copy for Utf8Component<'a>[src]

impl<'a> Debug for Utf8Component<'a>[src]

impl<'a> Display for Utf8Component<'a>[src]

impl<'a> Eq for Utf8Component<'a>[src]

impl<'a> Hash for Utf8Component<'a>[src]

impl<'a> Ord for Utf8Component<'a>[src]

impl<'a> PartialEq<Utf8Component<'a>> for Utf8Component<'a>[src]

impl<'a> PartialOrd<Utf8Component<'a>> for Utf8Component<'a>[src]

impl<'a> StructuralEq for Utf8Component<'a>[src]

impl<'a> StructuralPartialEq for Utf8Component<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Utf8Component<'a>

impl<'a> Send for Utf8Component<'a>

impl<'a> Sync for Utf8Component<'a>

impl<'a> Unpin for Utf8Component<'a>

impl<'a> UnwindSafe for Utf8Component<'a>

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> ToString for T where
    T: Display + ?Sized
[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.