pub struct SimpleBlock<L: RelooperLabel> {
pub label: L,
pub immediate: Option<Box<ShapedBlock<L>>>,
pub branches: FnvHashMap<L, BranchMode>,
pub next: Option<Box<ShapedBlock<L>>>,
}Fields§
§label: L§immediate: Option<Box<ShapedBlock<L>>>§branches: FnvHashMap<L, BranchMode>§next: Option<Box<ShapedBlock<L>>>Trait Implementations§
Source§impl<L: Debug + RelooperLabel> Debug for SimpleBlock<L>
impl<L: Debug + RelooperLabel> Debug for SimpleBlock<L>
Source§impl<L: PartialEq + RelooperLabel> PartialEq for SimpleBlock<L>
impl<L: PartialEq + RelooperLabel> PartialEq for SimpleBlock<L>
impl<L: RelooperLabel> StructuralPartialEq for SimpleBlock<L>
Auto Trait Implementations§
impl<L> Freeze for SimpleBlock<L>where
L: Freeze,
impl<L> RefUnwindSafe for SimpleBlock<L>where
L: RefUnwindSafe,
impl<L> Send for SimpleBlock<L>where
L: Send,
impl<L> Sync for SimpleBlock<L>where
L: Sync,
impl<L> Unpin for SimpleBlock<L>where
L: Unpin,
impl<L> UnwindSafe for SimpleBlock<L>where
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