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>

source

pub fn new(pem: &'i [u8]) -> Result<Self>

Create a new PEM Decoder with the default options.

Uses the default 64-character line wrapping.

source

pub fn new_wrapped(pem: &'i [u8], line_width: usize) -> Result<Self>

Create a new PEM Decoder which wraps at the given line width.

source

pub fn type_label(&self) -> &'i str

Get the PEM type label for the input document.

source

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.

source

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

Decode all of the remaining data in the input buffer into buf.

source

pub fn remaining_len(&self) -> usize

Get the decoded length of the remaining PEM data after Base64 decoding.

source

pub fn is_finished(&self) -> bool

Are we finished decoding the PEM input?

Trait Implementations§

source§

impl<'i> Clone for Decoder<'i>

source§

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

Returns a copy 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 Base64Decoder<'i>

source§

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

Converts to this type from the input type.

Auto Trait Implementations§

§

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> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.