pub struct Reader<R> { /* private fields */ }
Expand description
A CRAM index 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 CRAM index reader.
§Examples
use noodles_cram::crai;
let data = [];
let reader = crai::Reader::new(&data[..]);
Sourcepub fn read_index(&mut self) -> Result<Index>
pub fn read_index(&mut self) -> Result<Index>
Reads a CRAM index.
The position of the stream is expected to be at the start.
§Examples
use noodles_cram::crai;
let mut reader = File::open("sample.cram.crai").map(crai::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>
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>
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