pub struct BcBlock {
pub flags: u8,
pub useCount: u32,
pub ops: VecDeque<BcOp>,
pub successors: BcEdges,
pub predecessors: BcEdges,
pub sortkey: u32,
pub chainkey: u32,
pub startpc: u32,
}Fields§
§flags: u8§useCount: u32§ops: VecDeque<BcOp>§successors: BcEdges§predecessors: BcEdges§sortkey: u32§chainkey: u32§startpc: u32Implementations§
Trait Implementations§
impl Eq for BcBlock
impl StructuralPartialEq for BcBlock
Auto Trait Implementations§
impl Freeze for BcBlock
impl RefUnwindSafe for BcBlock
impl Send for BcBlock
impl Sync for BcBlock
impl Unpin for BcBlock
impl UnsafeUnpin for BcBlock
impl UnwindSafe for BcBlock
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