Struct ReadIter
struct ReadIter<R, T> { ... }
Extract and return all PEM sections by reading rd.
Implementations
impl<R: io::BufRead, T: PemObject> ReadIter<R, T>
fn new(rd: R) -> SelfCreate a new iterator.
impl<I> IntoIterator for ReadIter<R, T>
fn into_iter(self: Self) -> I
impl<R, T> Freeze for ReadIter<R, T>
impl<R, T> RefUnwindSafe for ReadIter<R, T>
impl<R, T> Send for ReadIter<R, T>
impl<R, T> Sync for ReadIter<R, T>
impl<R, T> Unpin for ReadIter<R, T>
impl<R, T> UnwindSafe for ReadIter<R, T>
impl<R: io::BufRead, T: PemObject> Iterator for ReadIter<R, T>
fn next(self: &mut Self) -> Option<<Self as >::Item>
impl<T> Any for ReadIter<R, T>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for ReadIter<R, T>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for ReadIter<R, T>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for ReadIter<R, T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for ReadIter<R, T>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for ReadIter<R, T>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for ReadIter<R, T>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>