Struct noodles_tabix::async::Reader
source · pub struct Reader<R>where
R: AsyncRead,{ /* private fields */ }
Expand description
An async tabix reader.
Implementations§
source§impl<R> Reader<R>
impl<R> Reader<R>
sourcepub fn new(inner: R) -> Self
pub fn new(inner: R) -> Self
Creates an async tabix reader.
§Examples
use noodles_tabix as tabix;
let data = [];
let reader = tabix::AsyncReader::new(&data[..]);
sourcepub async fn read_index(&mut self) -> Result<Index>
pub async 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;
use tokio::fs::File;
let mut reader = File::open("sample.vcf.gz.tbi")
.await
.map(tabix::AsyncReader::new)?;
let index = reader.read_index().await?;
Auto Trait Implementations§
impl<R> !Freeze for Reader<R>
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