pub trait ReadSamples {
    type Reader: SamplesReader;

    fn create_sample_reader(
        &self,
        header: &Header,
        channel: &ChannelDescription
    ) -> Result<Self::Reader>; }
Expand description

A template that creates a new [SampleReader] for each channel in each layer.

Required Associated Types

The type of the temporary samples reader

Required Methods

Create a single reader for a single channel of a layer

Implementors