Struct egg::EClass [−][src]
#[non_exhaustive]pub struct EClass<L, D> {
pub id: Id,
pub nodes: Vec<L>,
pub data: D,
// some fields omitted
}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: IdThis eclass’s id.
nodes: Vec<L>The equivalent enodes in this equivalence class.
data: DThe analysis data associated with this eclass.
Implementations
Trait Implementations
Auto Trait Implementations
impl<L, D> RefUnwindSafe for EClass<L, D> where
D: RefUnwindSafe,
L: RefUnwindSafe,
impl<L, D> UnwindSafe for EClass<L, D> where
D: UnwindSafe,
L: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
