pub struct GroundingStatus {
pub grounded: bool,
pub anchor_count: u32,
pub verified_count: u32,
pub last_verification: Option<i64>,
pub confidence: f64,
}Fields§
§grounded: bool§anchor_count: u32§verified_count: u32§last_verification: Option<i64>§confidence: f64Trait Implementations§
Source§impl Clone for GroundingStatus
impl Clone for GroundingStatus
Source§fn clone(&self) -> GroundingStatus
fn clone(&self) -> GroundingStatus
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 GroundingStatus
impl Debug for GroundingStatus
Source§impl<'de> Deserialize<'de> for GroundingStatus
impl<'de> Deserialize<'de> for GroundingStatus
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 GroundingStatus
impl RefUnwindSafe for GroundingStatus
impl Send for GroundingStatus
impl Sync for GroundingStatus
impl Unpin for GroundingStatus
impl UnsafeUnpin for GroundingStatus
impl UnwindSafe for GroundingStatus
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