[][src]Enum nvtt_rs::PathConvertError

pub enum PathConvertError {
    Utf8Convert,
    AsciiConvert,
    Nul(NulError),
}

An error type for when a path could not be converted.

Variants

Utf8Convert

An error occurred while converting the path into utf8.

AsciiConvert

An error occurred while converting the path into ASCII.

The path contained a nul byte and could not be converted into a C compatible string.

Trait Implementations

impl From<NulError> for PathConvertError[src]

impl Clone for PathConvertError[src]

impl Display for PathConvertError[src]

impl Debug for PathConvertError[src]

impl Error for PathConvertError[src]

Auto Trait Implementations

Blanket Implementations

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

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> 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.

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]