Trait bsa::DataSource[][src]

pub trait DataSource where
    Self::Read: Read
{ type Read; fn open(&self) -> Result<Self::Read>; }
Expand description

The DataSource provides a way to retrieve a reader. Each reader returned by [open()] should be fresh.

Associated Types

Required methods

Implementations on Foreign Types

Implementors