pub struct Inlinee<'a>(/* private fields */);Expand description
An inlined function that can evaluate to line information.
Implementations§
Source§impl<'a> Inlinee<'a>
impl<'a> Inlinee<'a>
Sourcepub fn lines(
&self,
parent_offset: PdbInternalSectionOffset,
inline_site: &InlineSiteSymbol<'a>,
) -> InlineeLineIterator<'a>
pub fn lines( &self, parent_offset: PdbInternalSectionOffset, inline_site: &InlineSiteSymbol<'a>, ) -> InlineeLineIterator<'a>
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§
Auto Trait Implementations§
impl<'a> Freeze for Inlinee<'a>
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> UnsafeUnpin for Inlinee<'a>
impl<'a> UnwindSafe for Inlinee<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more