Skip to main content

CompileKeyInputs

Struct CompileKeyInputs 

Source
pub struct CompileKeyInputs<'a> {
Show 13 fields pub crate_name: &'a str, pub crate_version: &'a str, pub target: &'a str, pub rustc_version: &'a str, pub profile: &'a Profile, pub crate_types: &'a [RustCrateType], pub emit: &'a [String], pub features_json: &'a str, pub dependency_c_metadata_json: &'a str, pub kind: &'a ArtifactKind, pub embed_metadata: Option<bool>, pub cfgs: &'a [String], pub embed_bitcode: bool,
}
Expand description

The identity inputs hashed into a compile key.

A compile key binds an artifact to one exact rustc invocation identity — crate coordinates, toolchain, profile, emit set, and dependency identities — so two invocations sharing a key produce interchangeable artifacts.

Fields§

§crate_name: &'a str

crates.io package name.

§crate_version: &'a str

Crate version string.

§target: &'a str

Compilation target triple.

§rustc_version: &'a str

rustc version string.

§profile: &'a Profile

Normalized compile profile.

§crate_types: &'a [RustCrateType]

Declared crate types.

§emit: &'a [String]

Sorted, deduplicated --emit kinds.

§features_json: &'a str

Canonical JSON-encoded features list.

§dependency_c_metadata_json: &'a str

Canonical JSON-encoded dependency c_metadata identities.

§kind: &'a ArtifactKind

Primary artifact kind.

§embed_metadata: Option<bool>

-Z embed-metadata value when the invocation carried the flag (nightly cargo emits it on every unit). None hashes to the same key invocations produced before the flag was modeled.

§cfgs: &'a [String]

Sorted, deduplicated --cfg values other than feature="…" (build-script cargo:rustc-cfg output). An empty list hashes to the same key invocations produced before cfgs were modeled.

§embed_bitcode: bool

Whether the object files carry LLVM bitcode (-C embed-bitcode absent or yes). false — the value cargo passes to every unit no LTO consumer needs bitcode from — hashes to the same key invocations produced before the flag was modeled.

Trait Implementations§

Source§

impl<'a> Debug for CompileKeyInputs<'a>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for CompileKeyInputs<'a>

§

impl<'a> RefUnwindSafe for CompileKeyInputs<'a>

§

impl<'a> Send for CompileKeyInputs<'a>

§

impl<'a> Sync for CompileKeyInputs<'a>

§

impl<'a> Unpin for CompileKeyInputs<'a>

§

impl<'a> UnsafeUnpin for CompileKeyInputs<'a>

§

impl<'a> UnwindSafe for CompileKeyInputs<'a>

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> 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> Same for T

Source§

type Output = T

Should always be Self
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, !>

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