pub struct FjNode {
pub cover: FjSubAtom,
pub probes: Vec<FjSubAtom>,
}Expand description
One plan node: iterate the cover subatom (bulk EXPAND over the whole frontier), then refine every probe subatom (PROBE + compaction). Probe variables must already be bound.
Fields§
§cover: FjSubAtom§probes: Vec<FjSubAtom>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FjNode
impl RefUnwindSafe for FjNode
impl Send for FjNode
impl Sync for FjNode
impl Unpin for FjNode
impl UnsafeUnpin for FjNode
impl UnwindSafe for FjNode
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