Skip to main content

BypassReason

Enum BypassReason 

Source
#[non_exhaustive]
pub enum BypassReason {
Show 40 variants NonUtf8Argument { index: usize, }, ResponseFile(String), UnknownFlag(String), UnknownCodegenOption(String), MissingValue(String), CompilerQuery, StandardInput, MissingInput, MultipleInputs, Incremental, UnsupportedCrateType(String), UnsupportedEmit(String), NoCacheableOutput, NoDepInfo, SplitOutputDirectories, InvalidOutputPath(PathBuf), ImplicitEmitWithOutputFile(PathBuf), NativeLibrary, UnsupportedSearchPath(String), UnresolvedExtern(String), UnmappedAbsolutePath(PathBuf), NonUtf8Path(PathBuf), RelativeWorkingDirectory(PathBuf), RelativePathMapping(PathBuf), InvalidPathPlaceholder(String), MissingRequiredInput(String), InvalidInputDigest(String), ConflictingInput(String), MalformedDepInfo(String), DepInfoRead { path: PathBuf, message: String, }, RelativeDepInfoPath(PathBuf), UnsafeDepInfoPath(PathBuf), InputRead { path: PathBuf, message: String, }, InputChanged(PathBuf), InputModifiedDuringCompilation(PathBuf), DiscoveryWorkingDirectory, ConflictingEnvironment(String), Serialization(String), UnsupportedPrediction, InvalidPredictedInput(String),
}
Expand description

Reason an invocation cannot safely use the action cache.

A bypass is an expected conservative outcome, not necessarily a compiler error. Variants carry diagnostic context while BypassReason::kind provides a stable aggregation key.

This set exists to shrink: every invocation the adapter learns to model retires a variant, and every construct it learns to reject adds one. Match on BypassReason::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)

A rustc response file could not be read or parsed exactly.

§

UnknownFlag(String)

A compiler flag is not modeled by this adapter version.

§

UnknownCodegenOption(String)

A -C option is not modeled by this adapter version.

§

MissingValue(String)

A recognized flag was not followed by its required value.

§

CompilerQuery

The invocation queries compiler information instead of compiling.

§

StandardInput

Source would be read from standard input and cannot be rediscovered.

§

MissingInput

No Rust source input was supplied.

§

MultipleInputs

More than one source input was supplied.

§

Incremental

Incremental state makes the outputs unsuitable for action caching.

§

UnsupportedCrateType(String)

The requested crate type is outside the supported cacheability tier.

§

UnsupportedEmit(String)

The requested emit kind is outside the supported cacheability tier.

§

NoCacheableOutput

The invocation emits no artifact in the supported cacheability tier.

§

NoDepInfo

The invocation does not emit the dep-info needed for input discovery.

§

SplitOutputDirectories

Outputs cannot be represented as one cache directory.

§

InvalidOutputPath(PathBuf)

An output path does not name a file.

§

ImplicitEmitWithOutputFile(PathBuf)

-o leaves the name of an implicit emit ambiguous.

§

NativeLibrary

Native-library lookup is not modeled as a precise input.

§

UnsupportedSearchPath(String)

A library search-path kind is not modeled.

§

UnresolvedExtern(String)

An extern name does not resolve to a concrete input artifact.

§

UnmappedAbsolutePath(PathBuf)

An absolute path has no stable placeholder mapping.

§

NonUtf8Path(PathBuf)

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

§

RelativeWorkingDirectory(PathBuf)

The action working directory is not absolute.

§

RelativePathMapping(PathBuf)

A path-mapping root is not absolute.

§

InvalidPathPlaceholder(String)

A mapping placeholder is empty or contains unsafe characters.

§

MissingRequiredInput(String)

An input referenced by compiler arguments is missing from the context.

§

InvalidInputDigest(String)

A supplied compiler-input digest is malformed.

§

ConflictingInput(String)

One normalized input path has multiple distinct digests.

§

MalformedDepInfo(String)

rustc dep-info does not follow the supported format.

§

DepInfoRead

A dep-info file could not be read as UTF-8 text.

Fields

§path: PathBuf

Dep-info file path.

§message: String

Underlying I/O or decoding error.

§

RelativeDepInfoPath(PathBuf)

The requested dep-info output path is not absolute.

§

UnsafeDepInfoPath(PathBuf)

A dep-info output path contains a comma and cannot be safely rendered.

§

InputRead

A discovered compiler input could not be read or was not a file.

Fields

§path: PathBuf

Compiler-input path.

§message: String

Underlying filesystem error.

§

InputChanged(PathBuf)

Input contents changed after they were hashed.

§

InputModifiedDuringCompilation(PathBuf)

An input’s modification time overlaps the compiler execution.

§

DiscoveryWorkingDirectory

Discovered inputs and the action use different working directories.

§

ConflictingEnvironment(String)

One observed environment input has conflicting values.

§

Serialization(String)

Canonical action serialization failed.

§

UnsupportedPrediction

The stored prediction uses an unsupported version or exceeds limits.

§

InvalidPredictedInput(String)

A normalized predicted path cannot be mapped back to the host.

Implementations§

Source§

impl BypassReason

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.

Trait Implementations§

Source§

impl Clone for BypassReason

Source§

fn clone(&self) -> BypassReason

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 BypassReason

Source§

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

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

impl Display for BypassReason

Source§

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

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

impl Eq for BypassReason

Source§

impl Error for BypassReason

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 BypassReason> for &'static str

Source§

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

Converts to this type from the input type.
Source§

impl From<BypassReason> for &'static str

Source§

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

Converts to this type from the input type.
Source§

impl PartialEq for BypassReason

Source§

fn eq(&self, other: &BypassReason) -> 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 BypassReason

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