pub enum MergeRef {
MetaId(MetaId),
FactIds(Vec<FactId>),
}Expand description
Type for describing one of the two ways a merged result can be created - either as a simple
aggregate using the FactIds constructor, or as a circumscribed aggregate using a MetaId
Variants§
MetaId(MetaId)
Circumscribed fact grouping
FactIds(Vec<FactId>)
Aggregate fact grouping (singleton for non-aggregate)
Trait Implementations§
Source§impl Ord for MergeRef
impl Ord for MergeRef
Source§impl PartialOrd for MergeRef
impl PartialOrd for MergeRef
impl Eq for MergeRef
impl StructuralPartialEq for MergeRef
Auto Trait Implementations§
impl Freeze for MergeRef
impl RefUnwindSafe for MergeRef
impl Send for MergeRef
impl Sync for MergeRef
impl Unpin for MergeRef
impl UnwindSafe for MergeRef
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