pub struct Dispatched {
pub mode: AppMode,
pub handle: RuntimeHandle,
pub initial_message: Option<String>,
pub initial_images: Vec<ImageContent>,
pub remaining_messages: Vec<String>,
pub migrations: MigrationResult,
}Expand description
A bootstrap that reached the dispatch stage.
Fields§
§mode: AppModeResolved application mode.
handle: RuntimeHandleLive runtime handle.
initial_message: Option<String>Initial message assembled from stdin + @file + first CLI message.
initial_images: Vec<ImageContent>Images attached to the initial message.
remaining_messages: Vec<String>Remaining CLI messages for follow-up prompts.
migrations: MigrationResultMigration result (carried into interactive mode for changelog display).
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Dispatched
impl !UnwindSafe for Dispatched
impl Freeze for Dispatched
impl Send for Dispatched
impl Sync for Dispatched
impl Unpin for Dispatched
impl UnsafeUnpin for Dispatched
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.