Skip to main content

CcBypassReason

Enum CcBypassReason 

Source
#[non_exhaustive]
pub enum CcBypassReason {
Show 45 variants NonUtf8Argument { index: usize, }, ResponseFile(String), UnknownFlag(String), MissingValue(String), CompilerQuery, NotACompile, NonObjectOutput(String), StandardInput, MissingInput, MultipleInputs, MissingOutput, UnsupportedLanguage(String), CallerDependencyFlags(String), PrecompiledHeader(String), CoverageInstrumentation(String), SplitDebugOutput(String), SaveTemps(String), ToolPassthrough(String), Plugin(String), SearchPathModifiedDuringCompilation(PathBuf), UnportableOutput(PathBuf), LocalCpuTarget(String), UnsupportedCompilerDriver(String), CompilerIdentityUnavailable(String), UnsupportedEnvironment(String), RealCompilerUnpinned, EmbeddedTimestampMacro(PathBuf), MalformedDepfile(String), DepfileRead { path: PathBuf, message: String, }, TooManyInputs, UnmappedAbsolutePath(PathBuf), NonUtf8Path(PathBuf), RelativeWorkingDirectory(PathBuf), RelativePathMapping(PathBuf), InvalidPathPlaceholder(String), MissingRequiredInput(String), InvalidInputDigest(String), ConflictingInput(String), InputRead { path: PathBuf, message: String, }, InputChanged(PathBuf), InputModifiedDuringCompilation(PathBuf), DiscoveryWorkingDirectory, UnsupportedPrediction, InvalidPredictedInput(String), Serialization(String),
}
Expand description

Reason a C or C++ invocation cannot safely use the action cache.

A bypass is an expected conservative outcome, not a compiler error. Match on CcBypassReason::kind for aggregation rather than on the variants.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

NonUtf8Argument

An argument cannot be represented in the canonical UTF-8 key.

Fields

§index: usize

Zero-based index in the argument slice.

§

ResponseFile(String)

The driver was handed an argument file.

§

UnknownFlag(String)

A compiler flag is not modeled by this adapter version.

§

MissingValue(String)

A recognized flag was given without its value.

§

CompilerQuery

The invocation asks the driver about itself rather than compiling.

§

NotACompile

The invocation is not a single-object compile.

§

NonObjectOutput(String)

The invocation emits preprocessed source or assembly.

§

StandardInput

The source arrives on standard input and cannot be rediscovered.

§

MissingInput

No source file was given.

§

MultipleInputs

More than one source file was given.

§

MissingOutput

No -o was given, so the object name follows driver defaults.

§

UnsupportedLanguage(String)

The source language is outside the modeled set.

§

CallerDependencyFlags(String)

The caller asked for its own dependency output.

§

PrecompiledHeader(String)

Precompiled headers are not byte-hermetic key material.

§

CoverageInstrumentation(String)

Coverage instrumentation writes outputs beside the object.

§

SplitDebugOutput(String)

Split debug info writes a .dwo beside the object.

§

SaveTemps(String)

Temporary files are preserved beside the object.

§

ToolPassthrough(String)

An option is smuggled to a sub-tool the adapter cannot model.

§

Plugin(String)

A compiler plugin makes the output depend on unmodeled code.

§

SearchPathModifiedDuringCompilation(PathBuf)

An include search directory gained or lost a header while the compiler ran, so the manifest recorded after it is not what the compilation saw.

§

UnportableOutput(PathBuf)

The object kept a path the key normalized away.

Remapping covers what the compiler records itself; a path the source keeps as a string survives it, and publishing such an object would share this checkout’s directory under a key that says it does not matter.

§

LocalCpuTarget(String)

The object depends on the machine’s own CPU rather than on named inputs.

§

UnsupportedCompilerDriver(String)

The driver is not a gcc-style or clang-style compiler.

§

CompilerIdentityUnavailable(String)

The identity probe could not be run or parsed.

§

UnsupportedEnvironment(String)

An environment variable outside the modeled set is set.

§

RealCompilerUnpinned

The shim could not be told which real compiler to run.

§

EmbeddedTimestampMacro(PathBuf)

A read file expands a timestamp macro, so the object is not a function of its inputs.

§

MalformedDepfile(String)

The injected depfile could not be parsed exactly.

§

DepfileRead

The injected depfile could not be read.

Fields

§path: PathBuf

Depfile that could not be read.

§message: String

Underlying error text.

§

TooManyInputs

The action exceeds an input, byte, or manifest bound.

§

UnmappedAbsolutePath(PathBuf)

An absolute path lies outside every mapped and system root.

§

NonUtf8Path(PathBuf)

A path cannot be represented in the canonical UTF-8 key.

§

RelativeWorkingDirectory(PathBuf)

The compiler working directory is not absolute.

§

RelativePathMapping(PathBuf)

A configured path mapping root is not absolute.

§

InvalidPathPlaceholder(String)

A configured placeholder is empty, duplicated, or not a bare name.

§

MissingRequiredInput(String)

A required input never appeared among the discovered inputs.

§

InvalidInputDigest(String)

An input digest is malformed.

§

ConflictingInput(String)

One normalized path carries two different digests.

§

InputRead

An input could not be read.

Fields

§path: PathBuf

Input that could not be read.

§message: String

Underlying error text.

§

InputChanged(PathBuf)

An input changed between discovery and publication.

§

InputModifiedDuringCompilation(PathBuf)

An input was written while the compiler ran.

§

DiscoveryWorkingDirectory

Discovery and the action disagree about the working directory.

§

UnsupportedPrediction

A prediction uses a schema this adapter version does not model.

§

InvalidPredictedInput(String)

A predicted input name cannot be resolved back to a host path.

§

Serialization(String)

Canonical serialization failed.

Implementations§

Source§

impl CcBypassReason

Source

pub fn kind(&self) -> &'static str

A stable, low-cardinality name for this reason.

Many variants carry a path or a flag, so Display text cannot be aggregated; statistics group by this instead.

Source

pub fn remediation(&self) -> Option<&'static str>

A concrete change that can make this invocation cacheable, when one is available.

Expected compiler probes and failures that require adapter support return None; callers can still explain those from CcBypassReason::kind.

Trait Implementations§

Source§

impl Clone for CcBypassReason

Source§

fn clone(&self) -> CcBypassReason

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CcBypassReason

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for CcBypassReason

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for CcBypassReason

Source§

impl Error for CcBypassReason

1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<'_derivative_strum> From<&'_derivative_strum CcBypassReason> for &'static str

Source§

fn from(x: &'_derivative_strum CcBypassReason) -> &'static str

Converts to this type from the input type.
Source§

impl From<CcBypassReason> for &'static str

Source§

fn from(x: CcBypassReason) -> &'static str

Converts to this type from the input type.
Source§

impl From<PathNormalizationError> for CcBypassReason

Source§

fn from(reason: PathNormalizationError) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for CcBypassReason

Source§

fn eq(&self, other: &CcBypassReason) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for CcBypassReason

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more