Enum depgraph::MakeParams [] [src]

pub enum MakeParams {
    None,
    ForceBuild,
}

When running the build scripts, we can either only build when output files are newer than their dependencies, or we can force the build script to run regardless. This enum allows for those two choices.

Variants

Just build normally, where we only rebuild if the source was updated

Always build, regardless of status of source

Trait Implementations

impl Debug for MakeParams
[src]

Formats the value using the given formatter.

impl Clone for MakeParams
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MakeParams
[src]