pub struct FromBase64Writer<W: Write, const N: usize = 4096> { /* private fields */ }Expand description
Write base64 data and decode them to plain data.
Implementations§
Source§impl<W: Write> FromBase64Writer<W>
impl<W: Write> FromBase64Writer<W>
pub fn new(writer: W) -> FromBase64Writer<W> ⓘ
Source§impl<W: Write, const N: usize> FromBase64Writer<W, N>
impl<W: Write, const N: usize> FromBase64Writer<W, N>
pub fn new2(writer: W) -> FromBase64Writer<W, N> ⓘ
Source§impl<W: Write, const N: usize> FromBase64Writer<W, N>
impl<W: Write, const N: usize> FromBase64Writer<W, N>
Sourcepub fn into_inner(self) -> W
pub fn into_inner(self) -> W
Returns the inner writer, consuming this wrapper.
Call flush before this method to ensure all
buffered data is written.
Trait Implementations§
Source§impl<W: Write> From<W> for FromBase64Writer<W>
impl<W: Write> From<W> for FromBase64Writer<W>
Source§impl<W: Write, const N: usize> Write for FromBase64Writer<W, N>
impl<W: Write, const N: usize> Write for FromBase64Writer<W, N>
Source§fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
fn write(&mut self, buf: &[u8]) -> Result<usize, Error>
Writes a buffer into this writer, returning how many bytes were written. Read more
Source§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
Flushes this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector)1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations§
impl<W, const N: usize> Freeze for FromBase64Writer<W, N>where
W: Freeze,
impl<W, const N: usize> RefUnwindSafe for FromBase64Writer<W, N>where
W: RefUnwindSafe,
impl<W, const N: usize> Send for FromBase64Writer<W, N>where
W: Send,
impl<W, const N: usize> Sync for FromBase64Writer<W, N>where
W: Sync,
impl<W, const N: usize> Unpin for FromBase64Writer<W, N>where
W: Unpin,
impl<W, const N: usize> UnsafeUnpin for FromBase64Writer<W, N>where
W: UnsafeUnpin,
impl<W, const N: usize> UnwindSafe for FromBase64Writer<W, N>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