pub struct Program {
pub files: Vec<ProgramFile>,
pub init_order: Vec<u32>,
}Fields§
§files: Vec<ProgramFile>§init_order: Vec<u32>Module file ids in dependency order (a module before anything that imports it), so their constants can be initialized in a valid order. The entry is not listed — its constants initialize inline with its own top-level statements.
Auto Trait Implementations§
impl Freeze for Program
impl RefUnwindSafe for Program
impl Send for Program
impl Sync for Program
impl Unpin for Program
impl UnsafeUnpin 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