pub struct CalyxGroup {
pub value: RRC<Group>,
}
Expand description
See calyx_ir::Group
.
Fields§
§value: RRC<Group>
Trait Implementations§
Source§impl CalyxAssignmentContainer for CalyxGroup
impl CalyxAssignmentContainer for CalyxGroup
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 CalyxGroup
impl !RefUnwindSafe for CalyxGroup
impl !Send for CalyxGroup
impl !Sync for CalyxGroup
impl Unpin for CalyxGroup
impl !UnwindSafe for CalyxGroup
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