pub struct VerifiedSemanticPair {
pub candidate: SemanticCandidatePair,
pub matched: RuleMatch,
}Expand description
One verified semantic candidate paired with the rule that justified it.
Fields§
§candidate: SemanticCandidatePairEndpoints into the SemanticGroupingUnit input slice.
matched: RuleMatchThe closed registered rule that accepted the endpoints.
Trait Implementations§
Source§impl Clone for VerifiedSemanticPair
impl Clone for VerifiedSemanticPair
Source§fn clone(&self) -> VerifiedSemanticPair
fn clone(&self) -> VerifiedSemanticPair
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 moreimpl Copy for VerifiedSemanticPair
Source§impl Debug for VerifiedSemanticPair
impl Debug for VerifiedSemanticPair
Source§impl PartialEq for VerifiedSemanticPair
impl PartialEq for VerifiedSemanticPair
impl StructuralPartialEq for VerifiedSemanticPair
Auto Trait Implementations§
impl Freeze for VerifiedSemanticPair
impl RefUnwindSafe for VerifiedSemanticPair
impl Send for VerifiedSemanticPair
impl Sync for VerifiedSemanticPair
impl Unpin for VerifiedSemanticPair
impl UnsafeUnpin for VerifiedSemanticPair
impl UnwindSafe for VerifiedSemanticPair
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