Skip to main content

ExecutionState

Enum ExecutionState 

Source
pub enum ExecutionState {
    Running,
    Paused(PendingQueries),
    Completed {
        result: Value,
    },
    Failed {
        error: String,
    },
    Cancelled,
}

Variants§

§

Running

§

Paused(PendingQueries)

Awaiting 1..N LLM responses.

§

Completed

Fields

§result: Value
§

Failed

Fields

§error: String
§

Cancelled

Explicit cancellation by the host.

Implementations§

Source§

impl ExecutionState

Source

pub fn is_terminal(&self) -> bool

Source

pub fn remaining(&self) -> usize

Number of pending queries. Returns 0 for non-Paused states.

Source

pub fn name(&self) -> &'static str

Returns the state name (for error messages).

Source

pub fn feed( &mut self, id: &QueryId, response: String, ) -> Result<bool, FeedError>

Feed a response. Only valid in Paused state. Returns Ok(true) when all queries are complete, Ok(false) otherwise.

Source

pub fn take_responses(&mut self) -> Result<Vec<String>, TransitionError>

Extract responses from a complete Paused state. Transitions self to Running (preparing for Lua resumption).

Source

pub fn complete(&mut self, result: Value) -> Result<(), TransitionError>

Running → Completed.

Source

pub fn fail(&mut self, error: String) -> Result<(), TransitionError>

Running → Failed.

Source

pub fn pause(&mut self, queries: Vec<LlmQuery>) -> Result<(), TransitionError>

Running → Paused (triggered by alc.llm() / alc.llm_batch()).

Source

pub fn cancel(&mut self) -> Result<(), TransitionError>

Running | Paused → Cancelled (explicit host cancellation).

Trait Implementations§

Source§

impl TryFrom<ExecutionState> for TerminalState

Source§

type Error = TransitionError

The type returned in the event of a conversion error.
Source§

fn try_from(state: ExecutionState) -> Result<Self, TransitionError>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.