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

pub struct FixpointExecutorFrame<'a, D, I> where
    D: Direction,
    I: Interp<'a, D>,
    I::State: Meet
{ pub caller_state: FixpointExecutorState<'a, D, I>, pub caller_queue: VecDeque<PathExecutorState<'a, D, I>>, }

🟢 Frame in the internal call stack of FixpointExecutor.

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

Fields

caller_state: FixpointExecutorState<'a, D, I>

Saved caller state.

caller_queue: VecDeque<PathExecutorState<'a, D, I>>

Saved caller queue.

Auto Trait Implementations

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

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

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

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

impl<'a, D, I> UnwindSafe for FixpointExecutorFrame<'a, D, I> where
    D: RefUnwindSafe,
    <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.