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

Constant-time Base64 reader implementation.

Trait Implementations

Read as much data as is needed to exactly fill out. Read more
Get the length of the remaining data after Base64 decoding.
Is decoding finished?
Decode length-prefixed data. Read more
Decodes [u8] from byte[n] as described in RFC4251 § 5: Read more
Decode a string as described in RFC4251 § 5: Read more
Drain the given number of bytes from the reader, discarding them.
Decode a u32 length prefix, and then drain the length of the body. Read more
Finish decoding, returning the given value if there is no remaining data, or an error otherwise. Read more