Struct pem_rfc7468::Decoder
source · pub struct Decoder<'i> { /* private fields */ }
Expand description
Buffered PEM decoder.
Stateful buffered decoder type which decodes an input PEM document according to RFC 7468’s “Strict” grammar.
Implementations§
source§impl<'i> Decoder<'i>
impl<'i> Decoder<'i>
sourcepub fn new(pem: &'i [u8]) -> Result<Self>
pub fn new(pem: &'i [u8]) -> Result<Self>
Create a new PEM Decoder
with the default options.
Uses the default 64-character line wrapping.
sourcepub fn new_wrapped(pem: &'i [u8], line_width: usize) -> Result<Self>
pub fn new_wrapped(pem: &'i [u8], line_width: usize) -> Result<Self>
Create a new PEM Decoder
which wraps at the given line width.
sourcepub fn type_label(&self) -> &'i str
pub fn type_label(&self) -> &'i str
Get the PEM type label for the input document.
sourcepub fn decode<'o>(&mut self, buf: &'o mut [u8]) -> Result<&'o [u8]>
pub fn decode<'o>(&mut self, buf: &'o mut [u8]) -> Result<&'o [u8]>
Decode data into the provided output buffer.
There must be at least as much remaining Base64 input to be decoded
in order to completely fill buf
.
sourcepub fn remaining_len(&self) -> usize
pub fn remaining_len(&self) -> usize
Get the decoded length of the remaining PEM data after Base64 decoding.
sourcepub fn is_finished(&self) -> bool
pub fn is_finished(&self) -> bool
Are we finished decoding the PEM input?
Trait Implementations§
source§impl<'i> From<Decoder<'i>> for Base64Decoder<'i>
impl<'i> From<Decoder<'i>> for Base64Decoder<'i>
source§fn from(decoder: Decoder<'i>) -> Base64Decoder<'i>
fn from(decoder: Decoder<'i>) -> Base64Decoder<'i>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'i> Freeze for Decoder<'i>
impl<'i> RefUnwindSafe for Decoder<'i>
impl<'i> Send for Decoder<'i>
impl<'i> Sync for Decoder<'i>
impl<'i> Unpin for Decoder<'i>
impl<'i> UnwindSafe for Decoder<'i>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)