pub struct StructuredCandidate {
pub focus: String,
pub description: String,
pub expected_improvement: String,
}Expand description
Structured candidate returned by the LLM.
Fields§
§focus: String§description: String§expected_improvement: StringTrait Implementations§
Source§impl Clone for StructuredCandidate
impl Clone for StructuredCandidate
Source§fn clone(&self) -> StructuredCandidate
fn clone(&self) -> StructuredCandidate
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 StructuredCandidate
impl Debug for StructuredCandidate
Source§impl<'de> Deserialize<'de> for StructuredCandidate
impl<'de> Deserialize<'de> for StructuredCandidate
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
Auto Trait Implementations§
impl Freeze for StructuredCandidate
impl RefUnwindSafe for StructuredCandidate
impl Send for StructuredCandidate
impl Sync for StructuredCandidate
impl Unpin for StructuredCandidate
impl UnsafeUnpin for StructuredCandidate
impl UnwindSafe for StructuredCandidate
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