pub trait HasFileSystem {
    // Provided method
    fn file_system(&self) -> Rc<RefCell<dyn FileSystem>> { ... }
}
Expand description

Implementations of this trait can provide access to the file system.

This trait is intended to be implemented by the state and used as a trait bound in Texlang primitives like \input that require a file system.

Provided Methods§

Implementors§