pub struct Project {
pub program: Program,
pub solution: Solution,
pub interface: Interface,
}Expand description
A checked, linked project, before it is sliced.
Separate from compile_project because publishing an interface and typechecking a library are
things a module can do without being an application. Only slicing needs a merge point, a durable
fold and a page — and a policy module that has none of those is not broken, it is a policy
module.
Fields§
§program: Program§solution: SolutionThe root module’s placement, for beck explain place.
interface: InterfaceThe root module’s published contract.
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnwindSafe for Project
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