[][src]Struct gf::ai::executor::PathExecutorFrame

pub struct PathExecutorFrame<'a, D, I> where
    D: Direction,
    I: Interp<'a, D>, 
{ pub caller_state: PathExecutorState<'a, D, I>, }

🟢 Frame in the internal call stack of a PathExecutor.

Note that frames are only created for inlined calls, see IpaAction for details.

Fields

caller_state: PathExecutorState<'a, D, I>

Saved caller state.

Auto Trait Implementations

impl<'a, D, I> RefUnwindSafe for PathExecutorFrame<'a, D, I> where
    <I as Interp<'a, D>>::State: RefUnwindSafe

impl<'a, D, I> Send for PathExecutorFrame<'a, D, I> where
    <I as Interp<'a, D>>::State: Send

impl<'a, D, I> Sync for PathExecutorFrame<'a, D, I> where
    <I as Interp<'a, D>>::State: Sync

impl<'a, D, I> Unpin for PathExecutorFrame<'a, D, I> where
    <I as Interp<'a, D>>::State: Unpin

impl<'a, D, I> UnwindSafe for PathExecutorFrame<'a, D, I> where
    <I as Interp<'a, D>>::State: UnwindSafe

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.