[−][src]Struct symbolic_debuginfo::Function
Debug information for a function.
Fields
address: u64Relative instruction address of the start of the function.
size: u64Total code size covered by the function body, including inlined functions.
name: Name<'data>The name and language of the function symbol.
compilation_dir: &'data [u8]Path to the compilation directory. File paths are relative to this.
lines: Vec<LineInfo<'data>>Lines covered by this function, including inlined children.
inlinees: Vec<Function<'data>>Functions that have been inlined into this function's body.
inline: boolSpecifies whether this function is inlined.
Methods
impl<'_> Function<'_>[src]
pub fn end_address(&self) -> u64[src]
End address of the entire function body, including inlined functions.
This address points at the first instruction after the function body.
Trait Implementations
Auto Trait Implementations
impl<'data> RefUnwindSafe for Function<'data>
impl<'data> Send for Function<'data>
impl<'data> Sync for Function<'data>
impl<'data> Unpin for Function<'data>
impl<'data> UnwindSafe for Function<'data>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,