Struct noodles_tabix::Writer
source · pub struct Writer<W>where
W: Write,{ /* private fields */ }
Expand description
A tabix writer.
Implementations§
source§impl<W> Writer<W>where
W: Write,
impl<W> Writer<W>where
W: Write,
sourcepub fn new(writer: W) -> Self
pub fn new(writer: W) -> Self
Creates a tabix writer.
§Examples
use noodles_tabix as tabix;
let writer = tabix::Writer::new(Vec::new());
sourcepub fn get_ref(&self) -> &W
pub fn get_ref(&self) -> &W
Returns a reference to the underlying writer.
§Examples
use noodles_tabix as tabix;
let writer = tabix::Writer::new(Vec::new());
assert!(writer.get_ref().is_empty());
sourcepub fn try_finish(&mut self) -> Result<()>
pub fn try_finish(&mut self) -> Result<()>
Attempts to finish the output stream.
This is typically only manually called if the underlying stream is needed before the writer is dropped.
§Examples
use noodles_tabix as tabix;
let mut writer = tabix::Writer::new(Vec::new());
writer.try_finish()?;
sourcepub fn write_index(&mut self, index: &Index) -> Result<()>
pub fn write_index(&mut self, index: &Index) -> Result<()>
Writes a tabix index.
§Examples
use noodles_csi::binning_index::index::Header;
use noodles_tabix as tabix;
let mut writer = tabix::Writer::new(Vec::new());
let index = tabix::Index::builder().set_header(Header::default()).build();
writer.write_index(&index)?;
Auto Trait Implementations§
impl<W> Freeze for Writer<W>where
W: Freeze,
impl<W> RefUnwindSafe for Writer<W>where
W: RefUnwindSafe,
impl<W> Send for Writer<W>where
W: Send,
impl<W> Sync for Writer<W>where
W: Sync,
impl<W> Unpin for Writer<W>where
W: Unpin,
impl<W> UnwindSafe for Writer<W>where
W: 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