pub struct Writer<W> { /* private fields */ }
Expand description
A GTF writer.
Implementations§
Source§impl<W> Writer<W>
impl<W> Writer<W>
Sourcepub fn get_ref(&self) -> &W
pub fn get_ref(&self) -> &W
Returns a reference to the underlying writer.
§Examples
use noodles_gtf as gtf;
let writer = gtf::io::Writer::new(io::sink());
let _inner = writer.get_ref();
Sourcepub fn get_mut(&mut self) -> &mut W
pub fn get_mut(&mut self) -> &mut W
Returns a mutable reference to the underlying writer.
§Examples
use noodles_gtf as gtf;
let mut writer = gtf::io::Writer::new(io::sink());
let _inner = writer.get_mut();
Sourcepub fn into_inner(self) -> W
pub fn into_inner(self) -> W
Returns the underlying writer.
§Examples
use noodles_gtf as gtf;
let writer = gtf::io::Writer::new(io::sink());
let _inner = writer.into_inner();
Source§impl<W> Writer<W>where
W: Write,
impl<W> Writer<W>where
W: Write,
Sourcepub fn new(inner: W) -> Self
pub fn new(inner: W) -> Self
Creates a GTF writer.
§Examples
use noodles_gtf as gtf;
let writer = gtf::io::Writer::new(Vec::new());
Sourcepub fn write_line(&mut self, line: &Line) -> Result<()>
pub fn write_line(&mut self, line: &Line) -> Result<()>
Writes a Line
.
§Examples
use noodles_gtf as gtf;
use gtf::line::Line;
let mut writer = gtf::io::Writer::new(Vec::new());
let version = Line::Comment(String::from("#format: gtf"));
writer.write_line(&version)?;
let comment = Line::Comment(String::from("noodles"));
writer.write_line(&comment)?;
let record = Line::Record(gtf::Record::default());
writer.write_line(&record)?;
let expected = b"##format: gtf
#noodles
.\t.\t.\t1\t1\t.\t.\t.\t
";
assert_eq!(&writer.get_ref()[..], &expected[..]);
Sourcepub fn write_record(&mut self, record: &Record) -> Result<()>
pub fn write_record(&mut self, record: &Record) -> Result<()>
Writes a GTF record.
§Examples
use noodles_gtf as gtf;
let mut writer = gtf::io::Writer::new(Vec::new());
let record = gtf::Record::default();
writer.write_record(&record)?;
let expected = b".\t.\t.\t1\t1\t.\t.\t.\t\n";
assert_eq!(writer.into_inner(), expected);
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