pub trait BlockAccessorExt: ReadBytes + Sized {
    // Provided method
    fn block_at(&self, index: BlockIndex) -> Block<&Self> { ... }
}

Provided Methods§

source

fn block_at(&self, index: BlockIndex) -> Block<&Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> BlockAccessorExt for T
where T: ReadBytes,