pub struct Program {
pub const_arrays: Vec<ConstArray>,
pub variables: HashMap<Id, Type>,
pub graph: StableDiGraph<BasicBlock, u32>,
/* private fields */
}Fields§
§const_arrays: Vec<ConstArray>§variables: HashMap<Id, Type>§graph: StableDiGraph<BasicBlock, u32>Trait Implementations§
Source§impl Deref for Program
impl Deref for Program
Source§type Target = StableGraph<BasicBlock, u32>
type Target = StableGraph<BasicBlock, u32>
The resulting type after dereferencing.
Auto Trait Implementations§
impl Freeze for Program
impl !RefUnwindSafe for Program
impl !Send for Program
impl !Sync for Program
impl Unpin for Program
impl !UnwindSafe for Program
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