[][src]Struct ddbug_parser::InlinedFunction

pub struct InlinedFunction<'input> { /* fields omitted */ }

An inlined instance of a function.

Implementations

impl<'input> InlinedFunction<'input>[src]

pub fn abstract_origin<'a>(
    &self,
    hash: &'a FileHash<'input>
) -> Option<&'a Function<'input>>
[src]

The function that this is an inlined instance of.

pub fn size(&self) -> Option<u64>[src]

The size of the inlined function.

pub fn call_source(&self) -> &Source<'input>[src]

The source information for call location.

pub fn parameters(&self) -> &[Parameter<'input>][src]

The function parameters.

pub fn variables(&self) -> &[LocalVariable<'input>][src]

The local variables.

pub fn inlined_functions(&self) -> &[InlinedFunction<'input>][src]

The inlined functions within this inlined functions.

Trait Implementations

impl<'input> Debug for InlinedFunction<'input>[src]

impl<'input> Default for InlinedFunction<'input>[src]

Auto Trait Implementations

impl<'input> RefUnwindSafe for InlinedFunction<'input>[src]

impl<'input> Send for InlinedFunction<'input>[src]

impl<'input> Sync for InlinedFunction<'input>[src]

impl<'input> Unpin for InlinedFunction<'input>[src]

impl<'input> UnwindSafe for InlinedFunction<'input>[src]

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, 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.