pub struct CalyxCombGroup {
pub value: RRC<CombGroup>,
}
Expand description
See calyx_ir::CombGroup
.
Fields§
§value: RRC<CombGroup>
Trait Implementations§
Source§impl CalyxAssignmentContainer for CalyxCombGroup
impl CalyxAssignmentContainer for CalyxCombGroup
type AssignmentType = Nothing
Source§fn add(&self, assignment: Assignment<Self::AssignmentType>)
fn add(&self, assignment: Assignment<Self::AssignmentType>)
Inserts a single assignment.
Source§fn extend<I: IntoIterator<Item = Assignment<Self::AssignmentType>>>(
&self,
assignments: I,
)
fn extend<I: IntoIterator<Item = Assignment<Self::AssignmentType>>>( &self, assignments: I, )
Inserts a set of assignment.
Auto Trait Implementations§
impl Freeze for CalyxCombGroup
impl !RefUnwindSafe for CalyxCombGroup
impl !Send for CalyxCombGroup
impl !Sync for CalyxCombGroup
impl Unpin for CalyxCombGroup
impl !UnwindSafe for CalyxCombGroup
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> 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