[][src]Enum uwp_transcode::error::TranscodeError

pub enum TranscodeError {
    WinRt(Error),
    Io(Error),
    NonUtf8Path,
    PrepareTranscodeFailure(TranscodeFailureReason),
}

Overall Error Type

Variants

WinRt(Error)

A WinRT error

Io(Error)

An I/O Error

NonUtf8Path

A path was used with this library that wasn't utf8. Note: Because of limitations in [winrt::HString], we cannot use aritrary byte strings

PrepareTranscodeFailure(TranscodeFailureReason)

Failed to prepare a transcode

Trait Implementations

impl Debug for TranscodeError[src]

impl Display for TranscodeError[src]

impl Error for TranscodeError[src]

impl From<Error> for TranscodeError[src]

impl From<Error> for TranscodeError[src]

Auto Trait Implementations

impl !RefUnwindSafe for TranscodeError

impl !Send for TranscodeError

impl !Sync for TranscodeError

impl Unpin for TranscodeError

impl !UnwindSafe for TranscodeError

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