pub struct Builder<'a> {
pub build: &'a Build,
pub top_stage: u32,
pub kind: Kind,
cache: Cache,
stack: RefCell<Vec<Box<dyn Any>>>,
time_spent_on_dependencies: Cell<Duration>,
pub paths: Vec<PathBuf>,
}
Fields§
§build: &'a Build
§top_stage: u32
§kind: Kind
§cache: Cache
§stack: RefCell<Vec<Box<dyn Any>>>
§time_spent_on_dependencies: Cell<Duration>
§paths: Vec<PathBuf>
Implementations§
source§impl<'a> Builder<'a>
impl<'a> Builder<'a>
fn get_step_descriptions(kind: Kind) -> Vec<StepDescription>
pub fn get_help(build: &Build, kind: Kind) -> Option<String>
fn new_internal(build: &Build, kind: Kind, paths: Vec<PathBuf>) -> Builder<'_>
pub fn new(build: &Build) -> Builder<'_>
pub fn execute_cli(&self)
pub fn default_doc(&self, paths: &[PathBuf])
pub fn doc_rust_lang_org_channel(&self) -> String
fn run_step_descriptions(&self, v: &[StepDescription], paths: &[PathBuf])
sourcepub fn compiler(&self, stage: u32, host: TargetSelection) -> Compiler
pub fn compiler(&self, stage: u32, host: TargetSelection) -> Compiler
Obtain a compiler at a given stage and for a given host. Explicitly does
not take Compiler
since all Compiler
instances are meant to be
obtained through this function, since it ensures that they are valid
(i.e., built and assembled).
sourcepub fn compiler_for(
&self,
stage: u32,
host: TargetSelection,
target: TargetSelection
) -> Compiler
pub fn compiler_for( &self, stage: u32, host: TargetSelection, target: TargetSelection ) -> Compiler
Similar to compiler
, except handles the full-bootstrap option to
silently use the stage1 compiler instead of a stage2 compiler if one is
requested.
Note that this does not have the side effect of creating
compiler(stage, host)
, unlike compiler
above which does have such
a side effect. The returned compiler here can only be used to compile
new artifacts, it can’t be used to rely on the presence of a particular
sysroot.
See force_use_stage1
and force_use_stage2
for documentation on what each argument is.
pub fn sysroot(&self, compiler: Compiler) -> Interned<PathBuf>
sourcepub fn sysroot_libdir(
&self,
compiler: Compiler,
target: TargetSelection
) -> Interned<PathBuf>
pub fn sysroot_libdir( &self, compiler: Compiler, target: TargetSelection ) -> Interned<PathBuf>
Returns the libdir where the standard library and other artifacts are found for a compiler’s sysroot.
pub fn sysroot_codegen_backends(&self, compiler: Compiler) -> PathBuf
sourcepub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf
pub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf
Returns the compiler’s libdir where it stores the dynamic libraries that it itself links against.
For example this returns <sysroot>/lib
on Unix and <sysroot>/bin
on
Windows.
sourcepub fn libdir_relative(&self, compiler: Compiler) -> &Path
pub fn libdir_relative(&self, compiler: Compiler) -> &Path
Returns the compiler’s relative libdir where it stores the dynamic libraries that it itself links against.
For example this returns lib
on Unix and bin
on
Windows.
sourcepub fn sysroot_libdir_relative(&self, compiler: Compiler) -> &Path
pub fn sysroot_libdir_relative(&self, compiler: Compiler) -> &Path
Returns the compiler’s relative libdir where the standard library and other artifacts are found for a compiler’s sysroot.
For example this returns lib
on Unix and Windows.
pub fn rustc_lib_paths(&self, compiler: Compiler) -> Vec<PathBuf>
sourcepub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command)
pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command)
Adds the compiler’s directory of dynamic libraries to cmd
’s dynamic
library lookup path.
sourcefn codegen_backends(&self, compiler: Compiler) -> impl Iterator<Item = PathBuf>
fn codegen_backends(&self, compiler: Compiler) -> impl Iterator<Item = PathBuf>
Gets the paths to all of the compiler’s codegen backends.
pub fn rustdoc(&self, compiler: Compiler) -> PathBuf
pub fn rustdoc_cmd(&self, compiler: Compiler) -> Command
sourcefn llvm_config(&self, target: TargetSelection) -> Option<PathBuf>
fn llvm_config(&self, target: TargetSelection) -> Option<PathBuf>
Return the path to llvm-config
for the target, if it exists.
Note that this returns None
if LLVM is disabled, or if we’re in a
check build or dry-run, where there’s no need to build all of LLVM.
sourcepub fn bare_cargo(
&self,
compiler: Compiler,
mode: Mode,
target: TargetSelection,
cmd: &str
) -> Command
pub fn bare_cargo( &self, compiler: Compiler, mode: Mode, target: TargetSelection, cmd: &str ) -> Command
Like cargo
, but only passes flags that are valid for all commands.
sourcepub fn cargo(
&self,
compiler: Compiler,
mode: Mode,
source_type: SourceType,
target: TargetSelection,
cmd: &str
) -> Cargo
pub fn cargo( &self, compiler: Compiler, mode: Mode, source_type: SourceType, target: TargetSelection, cmd: &str ) -> Cargo
Prepares an invocation of cargo
to be run.
This will create a Command
that represents a pending execution of
Cargo. This cargo will be configured to use compiler
as the actual
rustc compiler, its output will be scoped by mode
’s output directory,
it will pass the --target
flag for the specified target
, and will be
executing the Cargo command cmd
.
sourcepub fn ensure<S: Step>(&'a self, step: S) -> S::Output
pub fn ensure<S: Step>(&'a self, step: S) -> S::Output
Ensure that a given step is built, returning its output. This will cache the step, so it is safe (and good!) to call this as often as needed to ensure that all dependencies are built.
sourcepub(crate) fn ensure_if_default<T, S: Step<Output = Option<T>>>(
&'a self,
step: S,
kind: Kind
) -> S::Output
pub(crate) fn ensure_if_default<T, S: Step<Output = Option<T>>>( &'a self, step: S, kind: Kind ) -> S::Output
Ensure that a given step is built only if it’s supposed to be built by default, returning its output. This will cache the step, so it’s safe (and good!) to call this as often as needed to ensure that all dependencies are build.
sourcepub(crate) fn was_invoked_explicitly<S: Step>(&'a self, kind: Kind) -> bool
pub(crate) fn was_invoked_explicitly<S: Step>(&'a self, kind: Kind) -> bool
Checks if any of the “should_run” paths is in the Builder
paths.
pub(crate) fn maybe_open_in_browser<S: Step>(&self, path: impl AsRef<Path>)
pub(crate) fn open_in_browser(&self, path: impl AsRef<Path>)
source§impl Builder<'_>
impl Builder<'_>
fn msg_tool( &self, mode: Mode, tool: &str, build_stage: u32, host: &TargetSelection, target: &TargetSelection ) -> Option<Group>
source§impl Builder<'_>
impl Builder<'_>
fn toolstates(&self) -> HashMap<Box<str>, ToolState>
sourcepub fn save_toolstate(&self, tool: &str, state: ToolState)
pub fn save_toolstate(&self, tool: &str, state: ToolState)
Updates the actual toolstate of a tool.
The toolstates are saved to the file specified by the key
rust.save-toolstates
in config.toml
. If unspecified, nothing will be
done. The file is updated immediately after this function completes.
Methods from Deref<Target = Build>§
pub(crate) fn verbose(&self, msg: &str)
pub(crate) fn is_verbose(&self) -> bool
pub(crate) fn create(&self, path: &Path, s: &str)
pub(crate) fn remove(&self, f: &Path)
pub(crate) fn tempdir(&self) -> PathBuf
pub(crate) fn download_rustc(&self) -> bool
pub(crate) fn initial_rustfmt(&self) -> Option<PathBuf>
sourcepub(crate) fn update_submodule(&self, relative_path: &Path)
pub(crate) fn update_submodule(&self, relative_path: &Path)
Given a path to the directory of a submodule, update it.
relative_path
should be relative to the root of the git repository, not an absolute path.
sourcepub fn update_existing_submodules(&self)
pub fn update_existing_submodules(&self)
If any submodule has been initialized already, sync it unconditionally. This avoids contributors checking in a submodule change by accident.
sourcepub(crate) fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool
pub(crate) fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool
Clear out dir
if input
is newer.
After this executes, it will also ensure that dir
exists.
pub(crate) fn rust_info(&self) -> &GitInfo
sourcepub(crate) fn std_features(&self, target: TargetSelection) -> String
pub(crate) fn std_features(&self, target: TargetSelection) -> String
Gets the space-separated set of activated features for the standard library.
sourcepub(crate) fn rustc_features(&self, kind: Kind) -> String
pub(crate) fn rustc_features(&self, kind: Kind) -> String
Gets the space-separated set of activated features for the compiler.
sourcepub(crate) fn cargo_dir(&self) -> &'static str
pub(crate) fn cargo_dir(&self) -> &'static str
Component directory that Cargo will produce output into (e.g. release/debug)
pub(crate) fn tools_dir(&self, compiler: Compiler) -> PathBuf
sourcepub(crate) fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf
pub(crate) fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf
Returns the root directory for all output generated in a particular stage when running with a particular host compiler.
The mode indicates what the root directory is for.
sourcepub(crate) fn cargo_out(
&self,
compiler: Compiler,
mode: Mode,
target: TargetSelection
) -> PathBuf
pub(crate) fn cargo_out( &self, compiler: Compiler, mode: Mode, target: TargetSelection ) -> PathBuf
Returns the root output directory for all Cargo output in a given stage, running a particular compiler, whether or not we’re building the standard library, and targeting the specified architecture.
sourcepub(crate) fn llvm_out(&self, target: TargetSelection) -> PathBuf
pub(crate) fn llvm_out(&self, target: TargetSelection) -> PathBuf
Root output directory for LLVM compiled for target
Note that if LLVM is configured externally then the directory returned will likely be empty.
pub(crate) fn lld_out(&self, target: TargetSelection) -> PathBuf
sourcepub(crate) fn doc_out(&self, target: TargetSelection) -> PathBuf
pub(crate) fn doc_out(&self, target: TargetSelection) -> PathBuf
Output directory for all documentation for a target
sourcepub(crate) fn json_doc_out(&self, target: TargetSelection) -> PathBuf
pub(crate) fn json_doc_out(&self, target: TargetSelection) -> PathBuf
Output directory for all JSON-formatted documentation for a target
pub(crate) fn test_out(&self, target: TargetSelection) -> PathBuf
sourcepub(crate) fn compiler_doc_out(&self, target: TargetSelection) -> PathBuf
pub(crate) fn compiler_doc_out(&self, target: TargetSelection) -> PathBuf
Output directory for all documentation for a target
sourcepub(crate) fn md_doc_out(&self, target: TargetSelection) -> Interned<PathBuf>
pub(crate) fn md_doc_out(&self, target: TargetSelection) -> Interned<PathBuf>
Output directory for some generated md crate documentation for a target (temporary)
sourcepub(crate) fn is_rust_llvm(&self, target: TargetSelection) -> bool
pub(crate) fn is_rust_llvm(&self, target: TargetSelection) -> bool
Returns true
if no custom llvm-config
is set for the specified target.
If no custom llvm-config
was specified then Rust’s llvm will be used.
sourcepub(crate) fn llvm_filecheck(&self, target: TargetSelection) -> PathBuf
pub(crate) fn llvm_filecheck(&self, target: TargetSelection) -> PathBuf
Returns the path to FileCheck
binary for the specified target
sourcepub(crate) fn native_dir(&self, target: TargetSelection) -> PathBuf
pub(crate) fn native_dir(&self, target: TargetSelection) -> PathBuf
Directory for libraries built from C/C++ code and shared between stages.
sourcepub(crate) fn test_helpers_out(&self, target: TargetSelection) -> PathBuf
pub(crate) fn test_helpers_out(&self, target: TargetSelection) -> PathBuf
Root output directory for rust_test_helpers library compiled for
target
sourcepub(crate) fn add_rust_test_threads(&self, cmd: &mut Command)
pub(crate) fn add_rust_test_threads(&self, cmd: &mut Command)
Adds the RUST_TEST_THREADS
env var if necessary
sourcepub(crate) fn rustc_snapshot_libdir(&self) -> PathBuf
pub(crate) fn rustc_snapshot_libdir(&self) -> PathBuf
Returns the libdir of the snapshot compiler.
sourcepub(crate) fn rustc_snapshot_sysroot(&self) -> &Path
pub(crate) fn rustc_snapshot_sysroot(&self) -> &Path
Returns the sysroot of the snapshot compiler.
sourcepub(crate) fn run(&self, cmd: &mut Command)
pub(crate) fn run(&self, cmd: &mut Command)
Runs a command, printing out nice contextual information if it fails.
sourcepub(crate) fn run_quiet(&self, cmd: &mut Command)
pub(crate) fn run_quiet(&self, cmd: &mut Command)
Runs a command, printing out nice contextual information if it fails.
sourcepub(crate) fn run_quiet_delaying_failure(&self, cmd: &mut Command) -> bool
pub(crate) fn run_quiet_delaying_failure(&self, cmd: &mut Command) -> bool
Runs a command, printing out nice contextual information if it fails.
Exits if the command failed to execute at all, otherwise returns its
status.success()
.
sourcepub(crate) fn run_delaying_failure(&self, cmd: &mut Command) -> bool
pub(crate) fn run_delaying_failure(&self, cmd: &mut Command) -> bool
Runs a command, printing out contextual info if it fails, and delaying errors until the build finishes.
pub fn is_verbose_than(&self, level: usize) -> bool
sourcepub(crate) fn verbose_than(&self, level: usize, msg: &str)
pub(crate) fn verbose_than(&self, level: usize, msg: &str)
Prints a message if this build is configured in more verbose mode than level
.
pub(crate) fn info(&self, msg: &str)
pub(crate) fn msg_check( &self, what: impl Display, target: impl Into<Option<TargetSelection>> ) -> Option<Group>
pub(crate) fn msg_doc( &self, compiler: Compiler, what: impl Display, target: impl Into<Option<TargetSelection>> + Copy ) -> Option<Group>
pub(crate) fn msg_build( &self, compiler: Compiler, what: impl Display, target: impl Into<Option<TargetSelection>> ) -> Option<Group>
sourcepub(crate) fn msg(
&self,
action: impl Into<Kind>,
stage: u32,
what: impl Display,
host: impl Into<Option<TargetSelection>>,
target: impl Into<Option<TargetSelection>>
) -> Option<Group>
pub(crate) fn msg( &self, action: impl Into<Kind>, stage: u32, what: impl Display, host: impl Into<Option<TargetSelection>>, target: impl Into<Option<TargetSelection>> ) -> Option<Group>
Return a Group
guard for a Step
that is built for each --stage
.
sourcepub(crate) fn msg_unstaged(
&self,
action: impl Into<Kind>,
what: impl Display,
target: TargetSelection
) -> Option<Group>
pub(crate) fn msg_unstaged( &self, action: impl Into<Kind>, what: impl Display, target: TargetSelection ) -> Option<Group>
Return a Group
guard for a Step
that is only built once and isn’t affected by --stage
.
pub(crate) fn msg_sysroot_tool( &self, action: impl Into<Kind>, stage: u32, what: impl Display, host: TargetSelection, target: TargetSelection ) -> Option<Group>
pub(crate) fn group(&self, msg: &str) -> Option<Group>
sourcepub(crate) fn jobs(&self) -> u32
pub(crate) fn jobs(&self) -> u32
Returns the number of parallel jobs that have been configured for this build.
pub(crate) fn debuginfo_map_to(&self, which: GitRepo) -> Option<String>
sourcepub(crate) fn cc(&self, target: TargetSelection) -> PathBuf
pub(crate) fn cc(&self, target: TargetSelection) -> PathBuf
Returns the path to the C compiler for the target specified.
sourcepub(crate) fn cflags(
&self,
target: TargetSelection,
which: GitRepo,
c: CLang
) -> Vec<String>
pub(crate) fn cflags( &self, target: TargetSelection, which: GitRepo, c: CLang ) -> Vec<String>
Returns a list of flags to pass to the C compiler for the target specified.
sourcepub(crate) fn ar(&self, target: TargetSelection) -> Option<PathBuf>
pub(crate) fn ar(&self, target: TargetSelection) -> Option<PathBuf>
Returns the path to the ar
archive utility for the target specified.
sourcepub(crate) fn ranlib(&self, target: TargetSelection) -> Option<PathBuf>
pub(crate) fn ranlib(&self, target: TargetSelection) -> Option<PathBuf>
Returns the path to the ranlib
utility for the target specified.
sourcepub(crate) fn cxx(&self, target: TargetSelection) -> Result<PathBuf, String>
pub(crate) fn cxx(&self, target: TargetSelection) -> Result<PathBuf, String>
Returns the path to the C++ compiler for the target specified.
sourcepub(crate) fn linker(&self, target: TargetSelection) -> Option<PathBuf>
pub(crate) fn linker(&self, target: TargetSelection) -> Option<PathBuf>
Returns the path to the linker for the given target if it needs to be overridden.
pub(crate) fn is_fuse_ld_lld(&self, target: TargetSelection) -> bool
pub(crate) fn lld_flags( &self, target: TargetSelection ) -> impl Iterator<Item = String>
sourcepub(crate) fn crt_static(&self, target: TargetSelection) -> Option<bool>
pub(crate) fn crt_static(&self, target: TargetSelection) -> Option<bool>
Returns if this target should statically link the C runtime, if specified
sourcepub(crate) fn musl_root(&self, target: TargetSelection) -> Option<&Path>
pub(crate) fn musl_root(&self, target: TargetSelection) -> Option<&Path>
Returns the “musl root” for this target
, if defined
sourcepub(crate) fn musl_libdir(&self, target: TargetSelection) -> Option<PathBuf>
pub(crate) fn musl_libdir(&self, target: TargetSelection) -> Option<PathBuf>
Returns the “musl libdir” for this target
.
sourcepub(crate) fn wasi_root(&self, target: TargetSelection) -> Option<&Path>
pub(crate) fn wasi_root(&self, target: TargetSelection) -> Option<&Path>
Returns the sysroot for the wasi target, if defined
sourcepub(crate) fn no_std(&self, target: TargetSelection) -> Option<bool>
pub(crate) fn no_std(&self, target: TargetSelection) -> Option<bool>
Returns true
if this is a no-std target
, if defined
sourcepub(crate) fn remote_tested(&self, target: TargetSelection) -> bool
pub(crate) fn remote_tested(&self, target: TargetSelection) -> bool
Returns true
if the target will be tested using the remote-test-client
and remote-test-server
binaries.
sourcepub(crate) fn qemu_rootfs(&self, target: TargetSelection) -> Option<&Path>
pub(crate) fn qemu_rootfs(&self, target: TargetSelection) -> Option<&Path>
Returns the root of the “rootfs” image that this target will be using, if one was configured.
If Some
is returned then that means that tests for this target are
emulated with QEMU and binaries will need to be shipped to the emulator.
sourcepub(crate) fn extended_error_dir(&self) -> PathBuf
pub(crate) fn extended_error_dir(&self) -> PathBuf
Temporary directory that extended error information is emitted to.
sourcepub(crate) fn force_use_stage1(
&self,
stage: u32,
target: TargetSelection
) -> bool
pub(crate) fn force_use_stage1( &self, stage: u32, target: TargetSelection ) -> bool
Tests whether the compiler
compiling for target
should be forced to
use a stage1 compiler instead.
Currently, by default, the build system does not perform a “full bootstrap” by default where we compile the compiler three times. Instead, we compile the compiler two times. The final stage (stage2) just copies the libraries from the previous stage, which is what this method detects.
Here we return true
if:
- The build isn’t performing a full bootstrap
- The
compiler
is in the final stage, 2 - We’re not cross-compiling, so the artifacts are already available in stage1
When all of these conditions are met the build will lift artifacts from the previous stage forward.
sourcepub(crate) fn force_use_stage2(&self, stage: u32) -> bool
pub(crate) fn force_use_stage2(&self, stage: u32) -> bool
Checks whether the compiler
compiling for target
should be forced to
use a stage2 compiler instead.
When we download the pre-compiled version of rustc and compiler stage is >= 2, it should be forced to use a stage2 compiler.
sourcepub(crate) fn release(&self, num: &str) -> String
pub(crate) fn release(&self, num: &str) -> String
Given num
in the form “a.b.c” return a “release string” which
describes the release version number.
For example on nightly this returns “a.b.c-nightly”, on beta it returns “a.b.c-beta.1” and on stable it just returns “a.b.c”.
pub(crate) fn beta_prerelease_version(&self) -> u32
sourcepub(crate) fn rust_release(&self) -> String
pub(crate) fn rust_release(&self) -> String
Returns the value of release
above for Rust itself.
sourcepub(crate) fn package_vers(&self, num: &str) -> String
pub(crate) fn package_vers(&self, num: &str) -> String
Returns the “package version” for a component given the num
release
number.
The package version is typically what shows up in the names of tarballs.
For channels like beta/nightly it’s just the channel name, otherwise
it’s the num
provided.
sourcepub(crate) fn rust_package_vers(&self) -> String
pub(crate) fn rust_package_vers(&self) -> String
Returns the value of package_vers
above for Rust itself.
sourcepub(crate) fn rust_version(&self) -> String
pub(crate) fn rust_version(&self) -> String
Returns the version
string associated with this compiler for Rust
itself.
Note that this is a descriptive string which includes the commit date, sha, version, etc.
sourcepub(crate) fn release_num(&self, package: &str) -> String
pub(crate) fn release_num(&self, package: &str) -> String
Returns the a.b.c
version that the given package is at.
sourcepub(crate) fn unstable_features(&self) -> bool
pub(crate) fn unstable_features(&self) -> bool
Returns true
if unstable features should be enabled for the compiler
we’re building.
sourcepub(crate) fn in_tree_crates(
&self,
root: &str,
target: Option<TargetSelection>
) -> Vec<&Crate>
pub(crate) fn in_tree_crates( &self, root: &str, target: Option<TargetSelection> ) -> Vec<&Crate>
Returns a Vec of all the dependencies of the given root crate, including transitive dependencies and the root itself. Only includes “local” crates (those in the local source tree, not from a registry).
pub(crate) fn read_stamp_file( &self, stamp: &Path ) -> Vec<(PathBuf, DependencyType)>
pub(crate) fn copy_internal( &self, src: &Path, dst: &Path, dereference_symlinks: bool )
sourcepub fn cp_r(&self, src: &Path, dst: &Path)
pub fn cp_r(&self, src: &Path, dst: &Path)
Copies the src
directory recursively to dst
. Both are assumed to exist
when this function is called.
sourcepub fn cp_filtered(
&self,
src: &Path,
dst: &Path,
filter: &dyn Fn(&Path) -> bool
)
pub fn cp_filtered( &self, src: &Path, dst: &Path, filter: &dyn Fn(&Path) -> bool )
Copies the src
directory recursively to dst
. Both are assumed to exist
when this function is called. Unwanted files or directories can be skipped
by returning false
from the filter function.
pub(crate) fn recurse_( &self, src: &Path, dst: &Path, relative: &Path, filter: &dyn Fn(&Path) -> bool )
pub(crate) fn copy_to_folder(&self, src: &Path, dest_folder: &Path)
pub(crate) fn install(&self, src: &Path, dstdir: &Path, perms: u32)
pub(crate) fn read(&self, path: &Path) -> String
pub(crate) fn create_dir(&self, dir: &Path)
pub(crate) fn remove_dir(&self, dir: &Path)
pub(crate) fn read_dir(&self, dir: &Path) -> impl Iterator<Item = DirEntry>
pub(crate) fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>( &self, src: P, link: Q ) -> Result<()>
sourcepub(crate) fn ninja(&self) -> bool
pub(crate) fn ninja(&self) -> bool
Returns if config.ninja is enabled, and checks for ninja existence, exiting with a nicer error message if not.
pub fn colored_stdout<R, F: FnOnce(&mut dyn WriteColor) -> R>(&self, f: F) -> R
pub fn colored_stderr<R, F: FnOnce(&mut dyn WriteColor) -> R>(&self, f: F) -> R
pub(crate) fn colored_stream_inner<R, F, C>( &self, constructor: C, is_tty: bool, f: F ) -> Rwhere C: Fn(ColorChoice) -> StandardStream, F: FnOnce(&mut dyn WriteColor) -> R,
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Builder<'a>
impl<'a> !Send for Builder<'a>
impl<'a> !Sync for Builder<'a>
impl<'a> Unpin for Builder<'a>
impl<'a> !UnwindSafe for Builder<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 144 bytes