pub struct GroundedClaim {
pub claim: String,
pub citations: Vec<Citation>,
pub confidence: f64,
pub fully_grounded: bool,
}Expand description
A grounded claim about code with full citations.
Fields§
§claim: StringThe claim being made.
citations: Vec<Citation>Citations proving the claim.
confidence: f64Confidence based on citation strength.
fully_grounded: boolIs this claim fully grounded?
Trait Implementations§
Source§impl Clone for GroundedClaim
impl Clone for GroundedClaim
Source§fn clone(&self) -> GroundedClaim
fn clone(&self) -> GroundedClaim
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 moreSource§impl Debug for GroundedClaim
impl Debug for GroundedClaim
Source§impl<'de> Deserialize<'de> for GroundedClaim
impl<'de> Deserialize<'de> for GroundedClaim
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 GroundedClaim
impl RefUnwindSafe for GroundedClaim
impl Send for GroundedClaim
impl Sync for GroundedClaim
impl Unpin for GroundedClaim
impl UnsafeUnpin for GroundedClaim
impl UnwindSafe for GroundedClaim
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