[][src]Struct pdb::StreamNames

pub struct StreamNames<'s> { /* fields omitted */ }

A list of named streams contained within the PDB file.

Call StreamNames::iter to iterate over the names. The iterator produces StreamName objects.

Methods

impl<'s> StreamNames<'s>[src]

pub fn iter(&self) -> NameIter<'_, 's>[src]

Return an iterator over named streams and their stream indices.

Trait Implementations

impl<'a, 's> IntoIterator for &'a StreamNames<'s>[src]

type Item = &'a StreamName<'s>

The type of the elements being iterated over.

type IntoIter = NameIter<'a, 's>

Which kind of iterator are we turning this into?

impl<'s> Debug for StreamNames<'s>[src]

Auto Trait Implementations

impl<'s> Send for StreamNames<'s>

impl<'s> Sync for StreamNames<'s>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.