[][src]Struct cargo::core::compiler::BuildScriptOutputs

pub struct BuildScriptOutputs { /* fields omitted */ }

Map of packages to build script output.

This initially starts out as empty. Overridden build scripts get inserted during build_map. The rest of the entries are added immediately after each build script runs.

The Metadata is the unique metadata hash for the RunCustomBuild Unit of the package. It needs a unique key, since the build script can be run multiple times with different profiles or features. We can't embed a Unit because this structure needs to be shareable between threads.

Implementations

impl BuildScriptOutputs[src]

pub fn get(&self, pkg_id: PackageId, meta: Metadata) -> Option<&BuildOutput>[src]

Gets the build output for the given key.

pub fn iter(&self) -> impl Iterator<Item = (PackageId, &BuildOutput)>[src]

Returns an iterator over all entries.

Trait Implementations

impl Default for BuildScriptOutputs[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,