pub struct Enode<'a> {
pub children: &'a [Value],
pub eclass: Value,
pub subsumed: bool,
}Expand description
One enode from Read::constructor_enodes. Columns are raw
Values; convert with Core::value_to_base / Core::value_to_container.
Fields§
§children: &'a [Value]The constructor’s input columns.
eclass: ValueThe eclass id this enode belongs to.
subsumed: boolWhether this enode has been subsumed.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Enode<'a>
impl<'a> RefUnwindSafe for Enode<'a>
impl<'a> Send for Enode<'a>
impl<'a> Sync for Enode<'a>
impl<'a> Unpin for Enode<'a>
impl<'a> UnsafeUnpin for Enode<'a>
impl<'a> UnwindSafe for Enode<'a>
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