pub struct ModelOutput {
pub summary: String,
pub risk: u8,
}Expand description
The model’s structured output for one command.
Fields§
§summary: StringOne plain-English sentence describing what the command does.
risk: u8Severity score, 0..=100. Only meaningful for the ambiguous band.
Trait Implementations§
Source§impl Clone for ModelOutput
impl Clone for ModelOutput
Source§fn clone(&self) -> ModelOutput
fn clone(&self) -> ModelOutput
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 ModelOutput
impl Debug for ModelOutput
impl Eq for ModelOutput
Source§impl PartialEq for ModelOutput
impl PartialEq for ModelOutput
Source§fn eq(&self, other: &ModelOutput) -> bool
fn eq(&self, other: &ModelOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModelOutput
Auto Trait Implementations§
impl Freeze for ModelOutput
impl RefUnwindSafe for ModelOutput
impl Send for ModelOutput
impl Sync for ModelOutput
impl Unpin for ModelOutput
impl UnsafeUnpin for ModelOutput
impl UnwindSafe for ModelOutput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.