pub struct SearchAnswerGroundingReportResponse {
pub answer_supported: bool,
pub rejected: bool,
pub support_q16: u16,
pub supported_span_count: u32,
pub unsupported_span_count: u32,
pub spans: Vec<AnswerGroundingSpanResponse>,
}Fields§
§answer_supported: bool§rejected: bool§support_q16: u16§supported_span_count: u32§unsupported_span_count: u32§spans: Vec<AnswerGroundingSpanResponse>Trait Implementations§
Source§impl Clone for AnswerGroundingReportResponse
impl Clone for AnswerGroundingReportResponse
Source§fn clone(&self) -> AnswerGroundingReportResponse
fn clone(&self) -> AnswerGroundingReportResponse
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<'de> Deserialize<'de> for AnswerGroundingReportResponse
impl<'de> Deserialize<'de> for AnswerGroundingReportResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AnswerGroundingReportResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AnswerGroundingReportResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AnswerGroundingReportResponse
Source§impl PartialEq for AnswerGroundingReportResponse
impl PartialEq for AnswerGroundingReportResponse
Source§fn eq(&self, other: &AnswerGroundingReportResponse) -> bool
fn eq(&self, other: &AnswerGroundingReportResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnswerGroundingReportResponse
impl Serialize for AnswerGroundingReportResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AnswerGroundingReportResponse
Auto Trait Implementations§
impl Freeze for AnswerGroundingReportResponse
impl RefUnwindSafe for AnswerGroundingReportResponse
impl Send for AnswerGroundingReportResponse
impl Sync for AnswerGroundingReportResponse
impl Unpin for AnswerGroundingReportResponse
impl UnsafeUnpin for AnswerGroundingReportResponse
impl UnwindSafe for AnswerGroundingReportResponse
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