pub struct QueuedRun {
pub context: InvocationContext,
pub message: Message,
pub options: RunOptions,
}Expand description
Durable request waiting to enter the Runtime execution loop.
Fields§
§context: InvocationContextInvocation identity frozen when the request is accepted.
message: MessageUser-supplied multimodal message.
options: RunOptionsRuntime policy frozen when the request is accepted.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for QueuedRun
impl<'de> Deserialize<'de> for QueuedRun
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for QueuedRun
Auto Trait Implementations§
impl Freeze for QueuedRun
impl RefUnwindSafe for QueuedRun
impl Send for QueuedRun
impl Sync for QueuedRun
impl Unpin for QueuedRun
impl UnsafeUnpin for QueuedRun
impl UnwindSafe for QueuedRun
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