Trait rustls_pki_types::pem::PemObject
source · pub trait PemObject: Sized {
// Required method
fn from_pem(kind: SectionKind, der: Vec<u8>) -> Option<Self>;
// Provided methods
fn from_pem_slice(pem: &[u8]) -> Result<Self, Error> { ... }
fn pem_slice_iter(pem: &[u8]) -> SliceIter<'_, Self> ⓘ { ... }
fn from_pem_file(file_name: impl AsRef<Path>) -> Result<Self, Error> { ... }
fn pem_file_iter(
file_name: impl AsRef<Path>,
) -> Result<ReadIter<BufReader<File>, Self>, Error> { ... }
fn from_pem_reader(rd: impl Read) -> Result<Self, Error> { ... }
fn pem_reader_iter<R: Read>(rd: R) -> ReadIter<BufReader<R>, Self> ⓘ { ... }
}
Expand description
Items that can be decoded from PEM data.
Required Methods§
sourcefn from_pem(kind: SectionKind, der: Vec<u8>) -> Option<Self>
fn from_pem(kind: SectionKind, der: Vec<u8>) -> Option<Self>
Conversion from a PEM SectionKind
and body data.
This inspects kind
, and if it matches this type’s PEM section kind,
converts der
into this type.
Provided Methods§
sourcefn from_pem_slice(pem: &[u8]) -> Result<Self, Error>
fn from_pem_slice(pem: &[u8]) -> Result<Self, Error>
Decode the first section of this type from PEM contained in a byte slice.
Error::NoItemsFound
is returned if no such items are found.
sourcefn pem_slice_iter(pem: &[u8]) -> SliceIter<'_, Self> ⓘ
fn pem_slice_iter(pem: &[u8]) -> SliceIter<'_, Self> ⓘ
Iterate over all sections of this type from PEM contained in a byte slice.
sourcefn from_pem_file(file_name: impl AsRef<Path>) -> Result<Self, Error>
fn from_pem_file(file_name: impl AsRef<Path>) -> Result<Self, Error>
Decode the first section of this type from the PEM contents of the named file.
Error::NoItemsFound
is returned if no such items are found.
sourcefn pem_file_iter(
file_name: impl AsRef<Path>,
) -> Result<ReadIter<BufReader<File>, Self>, Error>
fn pem_file_iter( file_name: impl AsRef<Path>, ) -> Result<ReadIter<BufReader<File>, Self>, Error>
Iterate over all sections of this type from the PEM contents of the named file.
This reports errors in two phases:
- errors opening the file are reported from this function directly,
- errors reading from the file are reported from the returned iterator,
Object Safety§
This trait is not object safe.