pub struct Reader<R> { /* private fields */ }
Expand description
A tabix reader.
Consider using crate::read
to read the entire index at once.
Implementations§
Source§impl<R> Reader<R>
impl<R> Reader<R>
Sourcepub fn get_ref(&self) -> &Reader<R>
pub fn get_ref(&self) -> &Reader<R>
Returns a reference to the underlying reader.
§Examples
use noodles_tabix as tabix;
let reader = tabix::io::Reader::new(io::empty());
let _inner = reader.get_ref();
Sourcepub fn get_mut(&mut self) -> &mut Reader<R>
pub fn get_mut(&mut self) -> &mut Reader<R>
Returns a mutable reference to the underlying reader.
§Examples
use noodles_tabix as tabix;
let mut reader = tabix::io::Reader::new(io::empty());
let _inner = reader.get_mut();
Sourcepub fn into_inner(self) -> Reader<R>
pub fn into_inner(self) -> Reader<R>
Returns the underlying reader.
§Examples
use noodles_tabix as tabix;
let reader = tabix::io::Reader::new(io::empty());
let _inner = reader.into_inner();
Source§impl<R> Reader<R>where
R: Read,
impl<R> Reader<R>where
R: Read,
Sourcepub fn new(reader: R) -> Self
pub fn new(reader: R) -> Self
Creates a tabix reader.
§Examples
use noodles_tabix as tabix;;
let reader = File::open("sample.vcf.gz.tbi").map(tabix::io::Reader::new)?;
Sourcepub fn read_index(&mut self) -> Result<Index>
pub fn read_index(&mut self) -> Result<Index>
Reads the tabix index.
The position of the stream is expected to be at the beginning.
§Examples
use noodles_tabix as tabix;;
let mut reader = File::open("sample.vcf.gz.tbi").map(tabix::io::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