Trait bootstrap::core::builder::Step

source ·
pub trait Step: 'static + Clone + Debug + PartialEq + Eq + Hash {
    type Output: Clone;

    const DEFAULT: bool = false;
    const ONLY_HOSTS: bool = false;

    // Required methods
    fn run(self, builder: &Builder<'_>) -> Self::Output;
    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>;

    // Provided method
    fn make_run(_run: RunConfig<'_>) { ... }
}

Required Associated Types§

source

type Output: Clone

PathBuf when directories are created or to return a Compiler once it’s been assembled.

Provided Associated Constants§

source

const DEFAULT: bool = false

Whether this step is run by default as part of its respective phase. true here can still be overwritten by should_run calling default_condition.

source

const ONLY_HOSTS: bool = false

If true, then this rule should be skipped if –target was specified, but –host was not

Required Methods§

source

fn run(self, builder: &Builder<'_>) -> Self::Output

Primary function to execute this rule. Can call builder.ensure() with other steps to run those.

source

fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>

When bootstrap is passed a set of paths, this controls whether this rule will execute. However, it does not get called in a “default” context when we are not passed any paths; in that case, make_run is called directly.

Provided Methods§

source

fn make_run(_run: RunConfig<'_>)

Builds up a “root” rule, either as a default rule or from a path passed to us.

When path is None, we are executing in a context where no paths were passed. When ./x.py build is run, for example, this rule could get called if it is in the correct list below with a path of None.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl Step for Profile

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Bootstrap

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::check::CargoMiri

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Clippy

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::CodegenBackend

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Miri

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::MiroptTestTools

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Rls

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::RustAnalyzer

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Rustc

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Rustdoc

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Rustfmt

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::check::Std

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for CleanAll

source§

const DEFAULT: bool = true

§

type Output = ()

source§

impl Step for bootstrap::core::build_steps::clean::Rustc

§

type Output = ()

source§

impl Step for bootstrap::core::build_steps::clean::Std

§

type Output = ()

source§

impl Step for bootstrap::core::build_steps::clippy::Bootstrap

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for BuildHelper

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::BuildManifest

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::CargoMiri

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::Clippy

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::CollectLicenseMetadata

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::Compiletest

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::CoverageDump

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for Jsondocck

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for Jsondoclint

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::LintDocs

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::LlvmBitcodeLinker

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::Miri

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::MiroptTestTools

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for OptDist

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::RemoteTestClient

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::RemoteTestServer

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::Rls

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::RustAnalyzer

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::RustDemangler

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::RustInstaller

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::Rustc

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::clippy::Rustdoc

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::Rustfmt

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for bootstrap::core::build_steps::clippy::Std

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::clippy::Tidy

§

type Output = ()

source§

const DEFAULT: bool = false

source§

impl Step for Assemble

source§

impl Step for bootstrap::core::build_steps::compile::CodegenBackend

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::compile::Rustc

§

type Output = u32

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = false

§

type Output = ()

source§

impl Step for StartupObjects

source§

impl Step for bootstrap::core::build_steps::compile::Std

§

type Output = ()

source§

const DEFAULT: bool = true

§

type Output = ()

source§

impl Step for Sysroot

source§

impl Step for Analysis

source§

impl Step for bootstrap::core::build_steps::dist::Bootstrap

source§

impl Step for bootstrap::core::build_steps::dist::BuildManifest

source§

impl Step for bootstrap::core::build_steps::dist::Cargo

source§

impl Step for bootstrap::core::build_steps::dist::Clippy

source§

impl Step for bootstrap::core::build_steps::dist::CodegenBackend

source§

impl Step for DebuggerScripts

§

type Output = ()

source§

impl Step for bootstrap::core::build_steps::dist::Docs

source§

impl Step for Extended

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for JsonDocs

source§

impl Step for bootstrap::core::build_steps::dist::LlvmBitcodeLinker

source§

impl Step for bootstrap::core::build_steps::dist::LlvmTools

source§

impl Step for Mingw

source§

impl Step for bootstrap::core::build_steps::dist::Miri

source§

impl Step for PlainSourceTarball

source§

impl Step for ReproducibleArtifacts

source§

impl Step for bootstrap::core::build_steps::dist::Rls

source§

impl Step for bootstrap::core::build_steps::dist::RustAnalyzer

source§

impl Step for bootstrap::core::build_steps::dist::RustDemangler

source§

impl Step for RustDev

source§

impl Step for bootstrap::core::build_steps::dist::Rustc

source§

impl Step for RustcDev

source§

impl Step for RustcDocs

source§

impl Step for bootstrap::core::build_steps::dist::Rustfmt

source§

impl Step for bootstrap::core::build_steps::dist::Src

source§

impl Step for bootstrap::core::build_steps::dist::Std

source§

impl Step for bootstrap::core::build_steps::doc::Bootstrap

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Cargo

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CargoBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Clippy

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for ClippyBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::EditionGuide

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::EmbeddedBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::ErrorIndex

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Miri

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Nomicon

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Reference

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for Releases

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::RustByExample

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Rustc

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::RustcBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Rustdoc

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::RustdocBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Rustfmt

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for SharedAssets

source§

impl Step for Standalone

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Std

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for StyleGuide

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::TheBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::Tidy

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::UnstableBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::doc::UnstableBookGen

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Cargo

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Clippy

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Docs

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for bootstrap::core::build_steps::install::LlvmBitcodeLinker

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::LlvmTools

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Miri

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::RustAnalyzer

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::RustDemangler

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Rustc

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustcCodegenCranelift

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Rustfmt

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Src

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::install::Std

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for CrtBeginEnd

source§

impl Step for Libunwind

source§

impl Step for Lld

source§

impl Step for Llvm

source§

impl Step for Sanitizers

source§

impl Step for bootstrap::core::build_steps::run::BuildManifest

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::run::BumpStage0

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::run::CollectLicenseMetadata

source§

impl Step for GenerateCompletions

§

type Output = ()

source§

impl Step for bootstrap::core::build_steps::run::GenerateCopyright

source§

impl Step for bootstrap::core::build_steps::run::GenerateWindowsSys

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::run::Miri

§

type Output = ()

source§

const ONLY_HOSTS: bool = false

source§

impl Step for bootstrap::core::build_steps::run::ReplaceVersionPlaceholder

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for Hook

§

type Output = ()

source§

const DEFAULT: bool = true

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for Vscode

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for MirOptPanicAbortSyntheticTarget

source§

impl Step for Assembly

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for BookTest

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::Bootstrap

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::Cargo

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::CargoMiri

§

type Output = ()

source§

const ONLY_HOSTS: bool = false

source§

impl Step for Cargotest

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::Clippy

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = false

source§

impl Step for Codegen

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for CodegenCranelift

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CodegenGCC

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CodegenUnits

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for bootstrap::core::build_steps::test::Compiletest

§

type Output = ()

source§

impl Step for CompiletestTest

§

type Output = ()

source§

impl Step for Coverage

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = false

source§

impl Step for CoverageMap

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for CoverageRun

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CoverageRunRustdoc

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for Crashes

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for Crate

§

type Output = ()

source§

const DEFAULT: bool = true

source§

impl Step for CrateBootstrap

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for CrateLibrustc

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CrateRunMakeSupport

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CrateRustdoc

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CrateRustdocJsonTypes

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for Debuginfo

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for Distcheck

§

type Output = ()

source§

impl Step for bootstrap::core::build_steps::test::EditionGuide

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::EmbeddedBook

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::ErrorIndex

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for HtmlCheck

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for Incremental

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for Linkcheck

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::test::LintDocs

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for MirOpt

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for bootstrap::core::build_steps::test::Miri

§

type Output = ()

source§

const ONLY_HOSTS: bool = false

source§

impl Step for bootstrap::core::build_steps::test::Nomicon

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = true

source§

impl Step for Pretty

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::Reference

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RemoteCopyLibs

§

type Output = ()

source§

impl Step for RunMake

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for RunMakeFullDeps

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RunMakeSupport

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

impl Step for RunPassValgrind

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for bootstrap::core::build_steps::test::RustAnalyzer

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::test::RustByExample

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::RustDemangler

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::RustInstaller

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

const DEFAULT: bool = true

source§

impl Step for bootstrap::core::build_steps::test::RustcBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustcGuide

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::Rustdoc

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::RustdocBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustdocGUI

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustdocJSNotStd

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustdocJSStd

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustdocJson

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::RustdocTheme

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustdocUi

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::Rustfmt

§

type Output = ()

source§

const ONLY_HOSTS: bool = true

source§

impl Step for TestHelpers

§

type Output = ()

source§

impl Step for bootstrap::core::build_steps::test::TheBook

§

type Output = ()

source§

const DEFAULT: bool = false

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::Tidy

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for TierCheck

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for Ui

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = false

source§

impl Step for UiFullDeps

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::test::UnstableBook

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::tool::BuildManifest

source§

impl Step for bootstrap::core::build_steps::tool::BumpStage0

source§

impl Step for bootstrap::core::build_steps::tool::Cargo

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CargoClippy

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::tool::CargoMiri

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for CargoTest

source§

impl Step for Cargofmt

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::tool::Clippy

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::tool::CollectLicenseMetadata

source§

impl Step for bootstrap::core::build_steps::tool::Compiletest

source§

impl Step for bootstrap::core::build_steps::tool::CoverageDump

source§

impl Step for bootstrap::core::build_steps::tool::ErrorIndex

source§

impl Step for bootstrap::core::build_steps::tool::GenerateCopyright

source§

impl Step for bootstrap::core::build_steps::tool::GenerateWindowsSys

source§

impl Step for HtmlChecker

source§

impl Step for JsonDocCk

source§

impl Step for JsonDocLint

source§

impl Step for Linkchecker

source§

impl Step for bootstrap::core::build_steps::tool::LintDocs

source§

impl Step for LldWrapper

source§

impl Step for bootstrap::core::build_steps::tool::LlvmBitcodeLinker

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::tool::Miri

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for OptimizedDist

source§

impl Step for bootstrap::core::build_steps::tool::RemoteTestClient

source§

impl Step for bootstrap::core::build_steps::tool::RemoteTestServer

source§

impl Step for bootstrap::core::build_steps::tool::ReplaceVersionPlaceholder

source§

impl Step for bootstrap::core::build_steps::tool::Rls

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::tool::RustAnalyzer

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustAnalyzerProcMacroSrv

source§

impl Step for bootstrap::core::build_steps::tool::RustDemangler

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for bootstrap::core::build_steps::tool::RustInstaller

source§

impl Step for Rustbook

source§

impl Step for bootstrap::core::build_steps::tool::Rustdoc

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for RustdocGUITest

source§

impl Step for bootstrap::core::build_steps::tool::RustdocTheme

source§

impl Step for bootstrap::core::build_steps::tool::Rustfmt

§

type Output = PathBuf

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl Step for SuggestTests

source§

impl Step for bootstrap::core::build_steps::tool::Tidy

source§

impl Step for ToolBuild

source§

impl Step for bootstrap::core::build_steps::tool::UnstableBookGen

source§

impl Step for ToolStateCheck

§

type Output = ()

source§

impl Step for Vendor

§

type Output = ()

source§

const DEFAULT: bool = true

source§

const ONLY_HOSTS: bool = true

source§

impl<P: Step> Step for RustbookSrc<P>

§

type Output = ()