#[non_exhaustive]pub struct EClass<L, D> {
pub id: Id,
pub nodes: Vec<L>,
pub data: D,
/* private fields */
}
Expand description
An equivalence class of enodes.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Id
This eclass’s id.
nodes: Vec<L>
The equivalent enodes in this equivalence class.
data: D
The analysis data associated with this eclass.
Modifying this field will not cause changes to propagate through the e-graph.
Prefer EGraph::set_analysis_data
instead.
Implementations§
Source§impl<L, D> EClass<L, D>
impl<L, D> EClass<L, D>
Sourcepub fn iter(&self) -> impl ExactSizeIterator<Item = &L>
pub fn iter(&self) -> impl ExactSizeIterator<Item = &L>
Iterates over the enodes in this eclass.
Sourcepub fn parents(&self) -> impl ExactSizeIterator<Item = Id> + '_
pub fn parents(&self) -> impl ExactSizeIterator<Item = Id> + '_
Iterates over the non-canonical ids of parent enodes of this eclass.
Trait Implementations§
Source§impl<'de, L, D> Deserialize<'de> for EClass<L, D>where
L: Deserialize<'de>,
D: Deserialize<'de>,
impl<'de, L, D> Deserialize<'de> for EClass<L, D>where
L: Deserialize<'de>,
D: Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<L, D> Freeze for EClass<L, D>where
D: Freeze,
impl<L, D> RefUnwindSafe for EClass<L, D>where
D: RefUnwindSafe,
L: RefUnwindSafe,
impl<L, D> Send for EClass<L, D>
impl<L, D> Sync for EClass<L, D>
impl<L, D> Unpin for EClass<L, D>
impl<L, D> UnwindSafe for EClass<L, D>where
D: UnwindSafe,
L: UnwindSafe,
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