pub struct RuntimeOutcome {
pub status: String,
pub final_text: Option<String>,
pub prompt_tokens: u64,
pub completion_tokens: u64,
pub waiting_interaction_id: Option<String>,
}Fields§
§status: String§final_text: Option<String>§prompt_tokens: u64§completion_tokens: u64§waiting_interaction_id: Option<String>Trait Implementations§
Source§impl Clone for RuntimeOutcome
impl Clone for RuntimeOutcome
Source§fn clone(&self) -> RuntimeOutcome
fn clone(&self) -> RuntimeOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeOutcome
impl Debug for RuntimeOutcome
Source§impl PartialEq for RuntimeOutcome
impl PartialEq for RuntimeOutcome
impl StructuralPartialEq for RuntimeOutcome
Auto Trait Implementations§
impl Freeze for RuntimeOutcome
impl RefUnwindSafe for RuntimeOutcome
impl Send for RuntimeOutcome
impl Sync for RuntimeOutcome
impl Unpin for RuntimeOutcome
impl UnsafeUnpin for RuntimeOutcome
impl UnwindSafe for RuntimeOutcome
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