pub struct Writer<W>where
W: Write,{ /* private fields */ }
Expand description
A CSI 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 CSI writer.
§Examples
use noodles_csi as csi;
let writer = csi::io::Writer::new(Vec::new());
Sourcepub fn get_ref(&self) -> &Writer<W>
pub fn get_ref(&self) -> &Writer<W>
Returns a reference to the underlying writer.
§Examples
use noodles_csi as csi;
let writer = csi::io::Writer::new(io::sink());
let _inner = writer.get_ref();
Sourcepub fn get_mut(&mut self) -> &mut Writer<W>
pub fn get_mut(&mut self) -> &mut Writer<W>
Returns a mutable reference to the underlying writer.
§Examples
use noodles_csi as csi;
let mut writer = csi::io::Writer::new(io::sink());
let _inner = writer.get_mut();
Sourcepub fn into_inner(self) -> Writer<W>
pub fn into_inner(self) -> Writer<W>
Returns the underlying writer.
§Examples
use noodles_csi as csi;
let writer = csi::io::Writer::new(io::sink());
let _inner = writer.into_inner();
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