IntoBuildable

Trait IntoBuildable 

Source
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§

Source

fn into_buildable(self) -> Self::Buildable

Returns a dependency which contains the tasks which build this object.

Implementors§