pub fn apply_global_options(options: GlobalOptions)
Expand description

Applies the given GlobalOptions to the current thread

§Examples

use lofty::GlobalOptions;

// I have a custom resolver that I need checked
let global_options = GlobalOptions::new().use_custom_resolvers(true);
lofty::apply_global_options(global_options);