pub struct Reader<R> { /* private fields */ }
Expand description
An async gzip index (GZI) reader.
Implementations§
Source§impl<R> Reader<R>
impl<R> Reader<R>
Sourcepub fn get_ref(&self) -> &R
pub fn get_ref(&self) -> &R
Returns a reference to the underlying reader.
§Examples
use noodles_bgzf::gzi;
use tokio::io;
let reader = gzi::r#async::io::Reader::new(io::empty());
let _inner = reader.get_ref();
Sourcepub fn get_mut(&mut self) -> &mut R
pub fn get_mut(&mut self) -> &mut R
Returns a mutable reference to the underlying reader.
§Examples
use noodles_bgzf::gzi;
use tokio::io;
let mut reader = gzi::r#async::io::Reader::new(io::empty());
let _inner = reader.get_mut();
Sourcepub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Returns the underlying reader.
§Examples
use noodles_bgzf::gzi;
use tokio::io;
let reader = gzi::r#async::io::Reader::new(io::empty());
let _inner = reader.into_inner();
Source§impl<R> Reader<R>
impl<R> Reader<R>
Sourcepub fn new(inner: R) -> Self
pub fn new(inner: R) -> Self
Creates an async gzip index (GZI) reader.
§Examples
use noodles_bgzf::gzi;
let data = [0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00];
let reader = gzi::r#async::io::Reader::new(&data[..]);
Sourcepub async fn read_index(&mut self) -> Result<Index>
pub async fn read_index(&mut self) -> Result<Index>
Reads a gzip index.
The position of the stream is expected to be at the start.
§Examples
use noodles_bgzf::gzi;
use tokio::fs::File;
let mut reader = File::open("in.gzi")
.await
.map(gzi::r#async::io::Reader::new)?;
let index = reader.read_index().await?;
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