pub struct CompareGraphTextSummary {Show 14 fields
pub graph_hits: u64,
pub graph_edges: u64,
pub text_hits: u64,
pub matched: u64,
pub graph_only: u64,
pub text_only: u64,
pub text_mentions: u64,
pub likely_parser_gaps: u64,
pub likely_false_positives: u64,
pub likely_index_gaps: u64,
pub complete: bool,
pub recommended_fallback: String,
pub pattern_match_mode: String,
pub warnings: Vec<String>,
}Fields§
§graph_hits: u64§graph_edges: u64§text_hits: u64§matched: u64§graph_only: u64§text_only: u64§text_mentions: u64§likely_parser_gaps: u64§likely_false_positives: u64§likely_index_gaps: u64§complete: bool§recommended_fallback: String§pattern_match_mode: String§warnings: Vec<String>Trait Implementations§
Source§impl Debug for CompareGraphTextSummary
impl Debug for CompareGraphTextSummary
Source§impl Default for CompareGraphTextSummary
impl Default for CompareGraphTextSummary
Source§fn default() -> CompareGraphTextSummary
fn default() -> CompareGraphTextSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CompareGraphTextSummary
impl RefUnwindSafe for CompareGraphTextSummary
impl Send for CompareGraphTextSummary
impl Sync for CompareGraphTextSummary
impl Unpin for CompareGraphTextSummary
impl UnsafeUnpin for CompareGraphTextSummary
impl UnwindSafe for CompareGraphTextSummary
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more