Trait parenchyma::Build [] [src]

pub trait Build<Target>: Sized {
    fn build(_: &mut Target) -> Result<Self>;
}

Builds a package and provides the functionality for turning a library into backend-specific, executable operations, and tailored for the target framework.

Required Methods

Compiles the library into package after initializing and configuring the library.

Implementors