pub trait ImageImporterRule: Send + Sync + RefUnwindSafe {
    // Required method
    fn try_apply(&self, path: &Path) -> Option<ImageImporterRuleOptions>;
}

Required Methods§

Implementors§