Struct pdb::Inlinee[][src]

pub struct Inlinee<'a>(_);

An inlined function that can evaluate to line information.

Implementations

impl<'a> Inlinee<'a>[src]

pub fn index(&self) -> IdIndex[src]

The index of this inlinee in the IdInformation stream (IPI).

pub fn lines(
    &self,
    parent_offset: PdbInternalSectionOffset,
    inline_site: &InlineSiteSymbol<'a>
) -> InlineeLineIterator<'a>
[src]

Returns an iterator over line records for an inline site.

Note that line records are not guaranteed to be ordered by source code offset. If a monotonic order by PdbInternalSectionOffset or Rva is required, the lines have to be sorted manually.

Trait Implementations

impl<'a> Clone for Inlinee<'a>[src]

impl<'a> Debug for Inlinee<'a>[src]

impl<'a> Default for Inlinee<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Inlinee<'a>

impl<'a> Send for Inlinee<'a>

impl<'a> Sync for Inlinee<'a>

impl<'a> Unpin for Inlinee<'a>

impl<'a> UnwindSafe for Inlinee<'a>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.