pub struct Reader<R>where
R: AsyncRead,{ /* private fields */ }
Expand description
An async CSI 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 CSI reader.
§Examples
use noodles_csi as csi;
let data = [];
let reader = csi::r#async::io::Reader::new(&data[..]);
Sourcepub fn get_ref(&self) -> &AsyncReader<R>
pub fn get_ref(&self) -> &AsyncReader<R>
Returns a reference to the underlying reader.
§Examples
use noodles_csi as csi;
use tokio::io;
let reader = csi::r#async::io::Reader::new(io::empty());
let _inner = reader.get_ref();
Sourcepub fn get_mut(&mut self) -> &mut AsyncReader<R>
pub fn get_mut(&mut self) -> &mut AsyncReader<R>
Returns a mutable reference to the underlying reader.
§Examples
use noodles_csi as csi;
use tokio::io;
let mut reader = csi::r#async::io::Reader::new(io::empty());
let _inner = reader.get_mut();
Sourcepub fn into_inner(self) -> AsyncReader<R>
pub fn into_inner(self) -> AsyncReader<R>
Returns the underlying reader.
§Examples
use noodles_csi as csi;
use tokio::io;
let reader = csi::r#async::io::Reader::new(io::empty());
let _inner = reader.into_inner();
Sourcepub async fn read_index(&mut self) -> Result<Index>
pub async fn read_index(&mut self) -> Result<Index>
Reads the CSI index.
The position of the stream is expected to be at the beginning.
§Examples
use noodles_csi as csi;
use tokio::fs::File;
let mut reader = File::open("sample.bcf.csi")
.await
.map(csi::r#async::io::Reader::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