pub trait FileOpener {
    fn open(
        &mut self,
        path: &Path,
        conf: &OpenOptionsConfig
    ) -> Result<Box<dyn VirtualFile + Send + Sync + 'static>>; }

Required Methods

Implementors