Type Alias Base64Reader

Source
pub type Base64Reader<'i> = Decoder<'i, Base64>;
Available on crate feature base64 only.
Expand description

Constant-time Base64 reader implementation.

Aliased Type§

pub struct Base64Reader<'i> { /* private fields */ }

Implementations

Source§

impl<'i, E> Decoder<'i, E>
where E: Encoding,

Source

pub fn new(input: &'i [u8]) -> Result<Decoder<'i, E>, Error>

Create a new decoder for a byte slice containing contiguous (non-newline-delimited) Base64-encoded data.

§Returns
  • Ok(decoder) on success.
  • Err(Error::InvalidLength) if the input buffer is empty.
Source

pub fn new_wrapped( input: &'i [u8], line_width: usize, ) -> Result<Decoder<'i, E>, Error>

Create a new decoder for a byte slice containing Base64 which line wraps at the given line length.

Trailing newlines are not supported and must be removed in advance.

Newlines are handled according to what are roughly RFC7468 conventions:

[parsers] MUST handle different newline conventions

RFC7468 allows any of the following as newlines, and allows a mixture of different types of newlines:

eol        = CRLF / CR / LF
§Returns
  • Ok(decoder) on success.
  • Err(Error::InvalidLength) if the input buffer is empty or the line width is zero.
Source

pub fn decode<'o>(&mut self, out: &'o mut [u8]) -> Result<&'o [u8], Error>

Fill the provided buffer with data decoded from Base64.

Enough Base64 input data must remain to fill the entire buffer.

§Returns
  • Ok(bytes) if the expected amount of data was read
  • Err(Error::InvalidLength) if the exact amount of data couldn’t be read
Source

pub fn decode_to_end<'o>( &mut self, buf: &'o mut Vec<u8>, ) -> Result<&'o [u8], Error>

Decode all remaining Base64 data, placing the result into buf.

If successful, this function will return the total number of bytes decoded into buf.

Source

pub fn remaining_len(&self) -> usize

Get the length of the remaining data after Base64 decoding.

Decreases every time data is decoded.

Source

pub fn is_finished(&self) -> bool

Has all of the input data been decoded?

Trait Implementations§

Source§

impl Reader for Base64Reader<'_>

Source§

fn read<'o>(&mut self, out: &'o mut [u8]) -> Result<&'o [u8]>

Read as much data as is needed to exactly fill out. Read more
Source§

fn remaining_len(&self) -> usize

Get the length of the remaining data after Base64 decoding.
Source§

fn is_finished(&self) -> bool

Is decoding finished?
Source§

fn read_prefixed<'r, T, E, F>(&'r mut self, f: F) -> Result<T, E>
where E: From<Error>, F: FnOnce(&mut NestedReader<'r, Self>) -> Result<T, E>,

Decode length-prefixed data. Read more
Source§

fn read_byten<'o>(&mut self, out: &'o mut [u8]) -> Result<&'o [u8]>

Decodes [u8] from byte[n] as described in RFC4251 § 5: Read more
Source§

fn read_string<'o>(&mut self, buf: &'o mut [u8]) -> Result<&'o str>

Decode a string as described in RFC4251 § 5: Read more
Source§

fn drain(&mut self, n_bytes: usize) -> Result<()>

Drain the given number of bytes from the reader, discarding them.
Source§

fn drain_prefixed(&mut self) -> Result<usize>

Decode a u32 length prefix, and then drain the length of the body. Read more
Source§

fn finish<T>(self, value: T) -> Result<T>

Finish decoding, returning the given value if there is no remaining data, or an error otherwise.
Source§

impl<'i, E> Clone for Decoder<'i, E>
where E: Clone + Encoding,

Source§

fn clone(&self) -> Decoder<'i, E>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'i> From<Decoder<'i>> for Decoder<'i, Base64>

Source§

fn from(decoder: Decoder<'i>) -> Decoder<'i, Base64>

Converts to this type from the input type.
Source§

impl<E> Read for Decoder<'_, E>
where E: Encoding,

Source§

fn read(&mut self, buf: &mut [u8]) -> Result<usize, Error>

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more
Source§

fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

Reads all bytes until EOF in this source, placing them into buf. Read more
Source§

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

Reads the exact number of bytes required to fill buf. Read more
1.36.0 · Source§

fn read_vectored(&mut self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize, Error>

Like read, except that it reads into a slice of buffers. Read more
Source§

fn is_read_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Reader has an efficient read_vectored implementation. Read more
1.0.0 · Source§

fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

Reads all bytes until EOF in this source, appending them to buf. Read more
Source§

fn read_buf(&mut self, buf: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Pull some bytes from this source into the specified buffer. Read more
Source§

fn read_buf_exact(&mut self, cursor: BorrowedCursor<'_>) -> Result<(), Error>

🔬This is a nightly-only experimental API. (read_buf)
Reads the exact number of bytes required to fill cursor. Read more
1.0.0 · Source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adaptor for this instance of Read. Read more
1.0.0 · Source§

fn bytes(self) -> Bytes<Self>
where Self: Sized,

Transforms this Read instance to an Iterator over its bytes. Read more
1.0.0 · Source§

fn chain<R>(self, next: R) -> Chain<Self, R>
where R: Read, Self: Sized,

Creates an adapter which will chain this stream with another. Read more
1.0.0 · Source§

fn take(self, limit: u64) -> Take<Self>
where Self: Sized,

Creates an adapter which will read at most limit bytes from it. Read more