Struct base64::write::EncoderStringWriter [−][src]
A Write
implementation that base64-encodes data using the provided config and accumulates the
resulting base64 in memory, which is then exposed as a String via into_inner()
.
Examples
Buffer base64 in a new String:
use std::io::Write; let mut enc = base64::write::EncoderStringWriter::new(base64::STANDARD); enc.write_all(b"asdf").unwrap(); // get the resulting String let b64_string = enc.into_inner(); assert_eq!("YXNkZg==", &b64_string);
Or, append to an existing String:
use std::io::Write; let mut buf = String::from("base64: "); let mut enc = base64::write::EncoderStringWriter::from(&mut buf, base64::STANDARD); enc.write_all(b"asdf").unwrap(); // release the &mut reference on buf let _ = enc.into_inner(); assert_eq!("base64: YXNkZg==", &buf);
Panics
Calling write()
(or related methods) or finish()
after finish()
has completed without
error is invalid and will panic.
Performance
Because it has to validate that the base64 is UTF-8, it is about 80% as fast as writing plain
bytes to a io::Write
.
Implementations
impl<S: StrConsumer> EncoderStringWriter<S>
[src]
pub fn from(str_consumer: S, config: Config) -> Self
[src]
Create a EncoderStringWriter that will append to the provided StrConsumer
.
pub fn into_inner(self) -> S
[src]
Encode all remaining buffered data, including any trailing incomplete input triples and associated padding.
Once this succeeds, no further writes or calls to this method are allowed.
Returns the base64-encoded form of the accumulated written data.
impl EncoderStringWriter<String>
[src]
pub fn new(config: Config) -> Self
[src]
Create a EncoderStringWriter that will encode into a new String with the provided config.
Trait Implementations
impl<S: StrConsumer> Write for EncoderStringWriter<S>
[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>
[src]
fn flush(&mut self) -> Result<()>
[src]
pub fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>
1.36.0[src]
pub fn is_write_vectored(&self) -> bool
[src]
pub fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
pub fn write_all_vectored(
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
[src]
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
pub fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>
1.0.0[src]
pub fn by_ref(&mut self) -> &mut Self
1.0.0[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for EncoderStringWriter<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<S> Send for EncoderStringWriter<S> where
S: Send,
S: Send,
impl<S> Sync for EncoderStringWriter<S> where
S: Sync,
S: Sync,
impl<S> Unpin for EncoderStringWriter<S> where
S: Unpin,
S: Unpin,
impl<S> UnwindSafe for EncoderStringWriter<S> where
S: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,