pub trait BlockReadExclusive<B: BlockData>: Deref<Target = B> + Send {
    type File: File<B>;

    fn upgrade(self) -> <Self::File as File<B>>::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