Enum relative_path::FromPathErrorKind[][src]

pub enum FromPathErrorKind {
    NonRelative,
    NonUtf8,
    BadSeparator,
}

Variants

Non-relative component in path.

Non-utf8 component in path.

Trying to convert a platform-specific path which uses a platform-specific separator.

Trait Implementations

impl Copy for FromPathErrorKind
[src]

impl Debug for FromPathErrorKind
[src]

Formats the value using the given formatter. Read more

impl Clone for FromPathErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FromPathErrorKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for FromPathErrorKind
[src]

impl From<FromPathErrorKind> for FromPathError
[src]

Performs the conversion.

Auto Trait Implementations