pub enum DirtyReason {
Show 23 variants RustcChanged, FeaturesChanged { old: String, new: String, }, TargetConfigurationChanged, PathToSourceChanged, ProfileConfigurationChanged, RustflagsChanged { old: Vec<String>, new: Vec<String>, }, MetadataChanged, ConfigSettingsChanged, CompileKindChanged, LocalLengthsChanged, PrecalculatedComponentsChanged { old: String, new: String, }, DepInfoOutputChanged { old: PathBuf, new: PathBuf, }, RerunIfChangedOutputFileChanged { old: PathBuf, new: PathBuf, }, RerunIfChangedOutputPathsChanged { old: Vec<PathBuf>, new: Vec<PathBuf>, }, EnvVarsChanged { old: String, new: String, }, EnvVarChanged { name: String, old_value: Option<String>, new_value: Option<String>, }, LocalFingerprintTypeChanged { old: &'static str, new: &'static str, }, NumberOfDependenciesChanged { old: usize, new: usize, }, UnitDependencyNameChanged { old: InternedString, new: InternedString, }, UnitDependencyInfoChanged { old_name: InternedString, old_fingerprint: u64, new_name: InternedString, new_fingerprint: u64, }, FsStatusOutdated(FsStatus), NothingObvious, Forced,
}

Variants§

§

RustcChanged

§

FeaturesChanged

Fields

§old: String
§new: String
§

TargetConfigurationChanged

§

PathToSourceChanged

§

ProfileConfigurationChanged

§

RustflagsChanged

Fields

§old: Vec<String>
§new: Vec<String>
§

MetadataChanged

§

ConfigSettingsChanged

§

CompileKindChanged

§

LocalLengthsChanged

§

PrecalculatedComponentsChanged

Fields

§old: String
§new: String
§

DepInfoOutputChanged

Fields

§old: PathBuf
§new: PathBuf
§

RerunIfChangedOutputFileChanged

Fields

§old: PathBuf
§new: PathBuf
§

RerunIfChangedOutputPathsChanged

Fields

§old: Vec<PathBuf>
§new: Vec<PathBuf>
§

EnvVarsChanged

Fields

§old: String
§new: String
§

EnvVarChanged

Fields

§name: String
§old_value: Option<String>
§new_value: Option<String>
§

LocalFingerprintTypeChanged

Fields

§old: &'static str
§new: &'static str
§

NumberOfDependenciesChanged

Fields

§old: usize
§new: usize
§

UnitDependencyNameChanged

§

UnitDependencyInfoChanged

Fields

§old_name: InternedString
§old_fingerprint: u64
§new_name: InternedString
§new_fingerprint: u64
§

FsStatusOutdated(FsStatus)

§

NothingObvious

§

Forced

Implementations§

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 88 bytes

Size for each variant:

  • RustcChanged: 0 bytes
  • FeaturesChanged: 56 bytes
  • TargetConfigurationChanged: 0 bytes
  • PathToSourceChanged: 0 bytes
  • ProfileConfigurationChanged: 0 bytes
  • RustflagsChanged: 56 bytes
  • MetadataChanged: 0 bytes
  • ConfigSettingsChanged: 0 bytes
  • CompileKindChanged: 0 bytes
  • LocalLengthsChanged: 0 bytes
  • PrecalculatedComponentsChanged: 56 bytes
  • DepInfoOutputChanged: 56 bytes
  • RerunIfChangedOutputFileChanged: 56 bytes
  • RerunIfChangedOutputPathsChanged: 56 bytes
  • EnvVarsChanged: 56 bytes
  • EnvVarChanged: 80 bytes
  • LocalFingerprintTypeChanged: 40 bytes
  • NumberOfDependenciesChanged: 24 bytes
  • UnitDependencyNameChanged: 40 bytes
  • UnitDependencyInfoChanged: 56 bytes
  • FsStatusOutdated: 88 bytes
  • NothingObvious: 0 bytes
  • Forced: 0 bytes