Enum vst2::host::PluginLoadError [] [src]

pub enum PluginLoadError {
    InvalidPath,
    NotAPlugin,
    InstanceFailed,
    InvalidApiVersion,
}

All possible errors that can occur when loading a VST plugin.

Variants

Could not load given path.

Given path is not a VST plugin.

Failed to create an instance of this plugin.

This can happen for many reasons, such as if the plugin requires a different version of the VST API to be used, or due to improper licensing.

The API version which the plugin used is not supported by this library.

Trait Implementations

impl Debug for PluginLoadError
[src]

Formats the value using the given formatter.

impl Display for PluginLoadError
[src]

Formats the value using the given formatter. Read more

impl Error for PluginLoadError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more