pub trait BlockReadExclusive: Deref<Target = <Self::File as File>::Block> + Send {
    type File: File;

    fn upgrade(self) -> <Self::File as File>::BlockWrite;
}
Expand description

An exclusive read lock on a block

Required Associated Types§

The type of File that this block is part of

Required Methods§

Implementors§