[][src]Struct ddbug_parser::FunctionDetails

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

Extra function details.

These are kept separate from Function so that they can be loaded only when needed.

Implementations

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

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.

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

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

impl<'input> UnwindSafe for FunctionDetails<'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.