Enum ts3plugin::plugin::InitError [] [src]

pub enum InitError {
    Failure,
    FailureNoMessage,
}

Variants

Initialisation failed, the plugin will be unloaded again

Like Failure, but the client will not show a "failed to load" warning. This is a very special case and should only be used if a plugin displays a dialog (e.g. overlay) asking the user to disable the plugin again, avoiding the show another dialog by the client telling the user the plugin failed to load. For normal case, if a plugin really failed to load because of an error, the correct return value is Failure.

Trait Implementations

impl Debug for InitError
[src]

Formats the value using the given formatter.