Enum mpris::FindingError[][src]

pub enum FindingError {
    NoPlayerFound,
    DBusError(DBusError),
}

This enum encodes possible error cases that could happen when finding players.

Variants

No player was found matching the requirements of the calling method.

Finding failed due to an underlying D-Bus error.

Trait Implementations

impl Debug for FindingError
[src]

Formats the value using the given formatter. Read more

impl From<Error> for FindingError
[src]

Performs the conversion.

impl From<DBusError> for FindingError
[src]

Performs the conversion.

Auto Trait Implementations