pub struct UngroupedSemanticPair {
pub pair: VerifiedSemanticPair,
pub severed_by_the_ceiling: bool,
}Expand description
Semantic pairs left outside a cohesive group, with an explicit reason.
Fields§
§pair: VerifiedSemanticPairThe verified pair that no emitted group jointly represents.
severed_by_the_ceiling: boolWhether the grouping ceiling prevented this pair from being considered alongside the other endpoint, rather than complete-linkage rejecting a non-transitive chain.
Trait Implementations§
Source§impl Clone for UngroupedSemanticPair
impl Clone for UngroupedSemanticPair
Source§fn clone(&self) -> UngroupedSemanticPair
fn clone(&self) -> UngroupedSemanticPair
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 UngroupedSemanticPair
Source§impl Debug for UngroupedSemanticPair
impl Debug for UngroupedSemanticPair
Source§impl PartialEq for UngroupedSemanticPair
impl PartialEq for UngroupedSemanticPair
impl StructuralPartialEq for UngroupedSemanticPair
Auto Trait Implementations§
impl Freeze for UngroupedSemanticPair
impl RefUnwindSafe for UngroupedSemanticPair
impl Send for UngroupedSemanticPair
impl Sync for UngroupedSemanticPair
impl Unpin for UngroupedSemanticPair
impl UnsafeUnpin for UngroupedSemanticPair
impl UnwindSafe for UngroupedSemanticPair
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