pub trait IntoBuildable {
type Buildable: Buildable;
// Required method
fn into_buildable(self) -> Self::Buildable;
}Expand description
Represents something can be built by the assemble project.
Required Associated Types§
Required Methods§
Sourcefn into_buildable(self) -> Self::Buildable
fn into_buildable(self) -> Self::Buildable
Returns a dependency which contains the tasks which build this object.