pub struct GroundingSuggestion {
pub item_type: String,
pub id: String,
pub relevance_score: f64,
pub description: String,
pub data: Metadata,
}Expand description
A suggestion returned when a claim doesn’t match exactly
Fields§
§item_type: StringWhat type of item this is
id: StringItem identifier
relevance_score: f64Relevance score
description: StringHuman-readable description
data: MetadataSister-specific data
Trait Implementations§
Source§impl Clone for GroundingSuggestion
impl Clone for GroundingSuggestion
Source§fn clone(&self) -> GroundingSuggestion
fn clone(&self) -> GroundingSuggestion
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 GroundingSuggestion
impl Debug for GroundingSuggestion
Source§impl<'de> Deserialize<'de> for GroundingSuggestion
impl<'de> Deserialize<'de> for GroundingSuggestion
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 GroundingSuggestion
impl RefUnwindSafe for GroundingSuggestion
impl Send for GroundingSuggestion
impl Sync for GroundingSuggestion
impl Unpin for GroundingSuggestion
impl UnsafeUnpin for GroundingSuggestion
impl UnwindSafe for GroundingSuggestion
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