pub struct BasicBlock<I> {
pub label: u32,
pub code: Vec<I>,
pub branches: FnvHashSet<u32>,
}
Fields§
§label: u32
§code: Vec<I>
§branches: FnvHashSet<u32>
Auto Trait Implementations§
impl<I> Freeze for BasicBlock<I>
impl<I> RefUnwindSafe for BasicBlock<I>where
I: RefUnwindSafe,
impl<I> Send for BasicBlock<I>where
I: Send,
impl<I> Sync for BasicBlock<I>where
I: Sync,
impl<I> Unpin for BasicBlock<I>where
I: Unpin,
impl<I> UnwindSafe for BasicBlock<I>where
I: 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