pub struct EvidenceResponse {
pub cell_id: u64,
pub matched_terms: u32,
pub match_score_q16: u16,
pub match_kind: String,
pub source_trust_q16: u16,
pub source_trust_category: String,
pub citation: Option<String>,
pub payload_text: String,
}Fields§
§cell_id: u64§matched_terms: u32§match_score_q16: u16§match_kind: String§source_trust_q16: u16§source_trust_category: String§citation: Option<String>§payload_text: StringTrait Implementations§
Source§impl Clone for EvidenceResponse
impl Clone for EvidenceResponse
Source§fn clone(&self) -> EvidenceResponse
fn clone(&self) -> EvidenceResponse
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 EvidenceResponse
impl Debug for EvidenceResponse
Source§impl<'de> Deserialize<'de> for EvidenceResponse
impl<'de> Deserialize<'de> for EvidenceResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EvidenceResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EvidenceResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EvidenceResponse
Source§impl From<EvidenceResponse> for VerifyEvidenceConflict
impl From<EvidenceResponse> for VerifyEvidenceConflict
Source§fn from(value: EvidenceResponse) -> Self
fn from(value: EvidenceResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EvidenceResponse
impl PartialEq for EvidenceResponse
Source§fn eq(&self, other: &EvidenceResponse) -> bool
fn eq(&self, other: &EvidenceResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EvidenceResponse
impl Serialize for EvidenceResponse
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 EvidenceResponse
Auto Trait Implementations§
impl Freeze for EvidenceResponse
impl RefUnwindSafe for EvidenceResponse
impl Send for EvidenceResponse
impl Sync for EvidenceResponse
impl Unpin for EvidenceResponse
impl UnsafeUnpin for EvidenceResponse
impl UnwindSafe for EvidenceResponse
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