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

An exclusive read lock on a File

Required Methods§

Upgrade this read lock to a write lock

Implementors§