pub trait ManagedFile: File {
    type Manager: FileManager<File = Self>;
}
Expand description

A file that is managed by a FileManager.

Associated Types

The file manager that synchronizes file access across threads.

Implementors