#[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.
Implementations§
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<EClass<L, D>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EClass<L, D>, <__D as Deserializer<'de>>::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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more