pub trait OperableFile<File> where
    File: ManagedFile
{ fn execute<Output, Op: FileOp<Output>>(&mut self, operator: Op) -> Output; }
Expand description

A file that can have an operation performed against it.

Required methods

Executes an operation and returns the results.

Implementors