[][src]Enum ommui_frontend_gtk::error::Error

pub enum Error {
    GLib {
        source: Error,
        backtrace: Backtrace,
    },
    GLibBool {
        source: BoolError,
        backtrace: Backtrace,
    },
    OmmuiData {
        source: Error,
    },
    DBus {
        source: Error,
        backtrace: Backtrace,
    },
    RemoteSupportCommandIoError {
        source: Error,
        backtrace: Backtrace,
    },
    RemoteSupportCommandExited {
        status: ExitStatus,
        stderr: String,
        stdout: String,
        backtrace: Backtrace,
    },
    ExportIo {
        source: Error,
        backtrace: Backtrace,
    },
    Export {
        source: Error,
    },
}

The error type.

Variants

GLib

An error from the glib crate.

Fields of GLib

source: Error

The source error.

backtrace: Backtrace

The backtrace.

GLibBool

A bool error from the glib crate.

Fields of GLibBool

source: BoolError

The source error.

backtrace: Backtrace

The backtrace.

OmmuiData

An error in the OMMUI data crate.

Fields of OmmuiData

source: Error

The source error.

DBus

An error when communicating with dbus.

Fields of DBus

source: Error

The source error.

backtrace: Backtrace

The backtrace.

RemoteSupportCommandIoError

Couldn't run the remote support command.

Fields of RemoteSupportCommandIoError

source: Error

The source error.

backtrace: Backtrace

The backtrace.

RemoteSupportCommandExited

Remote support command exited with error status.

Fields of RemoteSupportCommandExited

status: ExitStatus

The exit status

stderr: String

The stderr output.

stdout: String

The stdout output.

backtrace: Backtrace

The backtrace.

ExportIo

An error creating the export file.

Fields of ExportIo

source: Error

The source error.

backtrace: Backtrace

The backtrace.

Export

An error creating the export file.

Fields of Export

source: Error

The source error.

Trait Implementations

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error where
    Self: Debug + Display
[src]

impl ErrorCompat for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

impl !RefUnwindSafe for Error

Blanket Implementations

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

impl<T> From<T> for 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 = !

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> AsErrorSource for T where
    T: 'static + Error
[src]

impl<E> Fail for E where
    E: 'static + Error + Send + Sync

impl<T> AsFail for T where
    T: Fail, 

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> SetParameter for T

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]