Struct noodles_csi::reader::Reader
source · pub struct Reader<R> { /* private fields */ }
Expand description
A CSI reader.
Implementations§
source§impl<R> Reader<R>where
R: Read,
impl<R> Reader<R>where
R: Read,
sourcepub fn new(inner: R) -> Self
pub fn new(inner: R) -> Self
Creates a CSI reader.
§Examples
use noodles_csi as csi;
let reader = File::open("sample.bcf.csi").map(csi::Reader::new)?;
sourcepub fn read_index(&mut self) -> Result<Index>
pub fn read_index(&mut self) -> Result<Index>
Reads a CSI index.
The position of the stream is expected to be at the beginning.
§Examples
use noodles_csi as csi;
let mut reader = File::open("sample.bcf.csi").map(csi::Reader::new)?;
let index = reader.read_index();
Auto Trait Implementations§
impl<R> Freeze for Reader<R>where
R: Freeze,
impl<R> RefUnwindSafe for Reader<R>where
R: RefUnwindSafe,
impl<R> Send for Reader<R>where
R: Send,
impl<R> Sync for Reader<R>where
R: Sync,
impl<R> Unpin for Reader<R>where
R: Unpin,
impl<R> UnwindSafe for Reader<R>where
R: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more