pub trait FileReadExclusive<B: BlockData>: FileRead<B> {
    fn upgrade(self) -> <Self::File as File<B>>::Write;
}
Expand description

An exclusive read lock on a File

Required Methods

Upgrade this read lock to a write lock

Implementors