pub struct MiniLoopDecision {
pub answer: String,
pub prompt_tokens: u64,
pub completion_tokens: u64,
}Expand description
Result of a mini-loop fast decision.
Fields§
§answer: String§prompt_tokens: u64§completion_tokens: u64Trait Implementations§
Source§impl Clone for MiniLoopDecision
impl Clone for MiniLoopDecision
Source§fn clone(&self) -> MiniLoopDecision
fn clone(&self) -> MiniLoopDecision
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MiniLoopDecision
impl RefUnwindSafe for MiniLoopDecision
impl Send for MiniLoopDecision
impl Sync for MiniLoopDecision
impl Unpin for MiniLoopDecision
impl UnsafeUnpin for MiniLoopDecision
impl UnwindSafe for MiniLoopDecision
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