pub fn discover_plugins() -> Result<Vec<PluginInfo>>Expand description
Discover all VST3 plugins in the standard system locations.
Scans the platform’s standard VST3 directories and returns metadata for each
plugin found. For progress reporting during a long scan, use
Vst3Host::discover_plugins_with_callback.
§Examples
use vst3_host::simple;
for info in simple::discover_plugins()? {
println!("Found: {} by {}", info.name, info.vendor);
}