Enum cargo::util::Freshness [] [src]

pub enum Freshness {
    Fresh,
    Dirty,
}

Indication of the freshness of a package.

A fresh package does not necessarily need to be rebuilt (unless a dependency was also rebuilt), and a dirty package must always be rebuilt.

Variants

Methods

impl Freshness
[src]

Trait Implementations

impl PartialEq for Freshness
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Freshness
[src]

impl Debug for Freshness
[src]

Formats the value using the given formatter.

impl Clone for Freshness
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Freshness
[src]