Struct cargo::core::compiler::build_context::target_info::RustcTargetData
source · pub struct RustcTargetData<'cfg> {
pub rustc: Rustc,
pub config: &'cfg Config,
requested_kinds: Vec<CompileKind>,
host_config: TargetConfig,
host_info: TargetInfo,
target_config: HashMap<CompileTarget, TargetConfig>,
target_info: HashMap<CompileTarget, TargetInfo>,
}Expand description
Collection of information about rustc and the host and target.
Fields§
§rustc: RustcInformation about rustc itself.
config: &'cfg ConfigConfig
requested_kinds: Vec<CompileKind>§host_config: TargetConfigBuild information for the “host”, which is information about when
rustc is invoked without a --target flag. This is used for
procedural macros, build scripts, etc.
host_info: TargetInfoInformation about the host platform.
target_config: HashMap<CompileTarget, TargetConfig>Build information for targets that we’re building for.
target_info: HashMap<CompileTarget, TargetInfo>Information about the target platform that we’re building for.
Implementations§
source§impl<'cfg> RustcTargetData<'cfg>
impl<'cfg> RustcTargetData<'cfg>
pub fn new( ws: &Workspace<'cfg>, requested_kinds: &[CompileKind] ) -> CargoResult<RustcTargetData<'cfg>>
sourcepub fn merge_compile_kind(&mut self, kind: CompileKind) -> CargoResult<()>
pub fn merge_compile_kind(&mut self, kind: CompileKind) -> CargoResult<()>
Insert kind into our target_info and target_config members if it isn’t present yet.
sourcepub fn short_name<'a>(&'a self, kind: &'a CompileKind) -> &'a str
pub fn short_name<'a>(&'a self, kind: &'a CompileKind) -> &'a str
Returns a “short” name for the given kind, suitable for keying off configuration in Cargo or presenting to users.
sourcepub fn dep_platform_activated(
&self,
dep: &Dependency,
kind: CompileKind
) -> bool
pub fn dep_platform_activated( &self, dep: &Dependency, kind: CompileKind ) -> bool
Whether a dependency should be compiled for the host or target platform,
specified by CompileKind.
sourcepub fn cfg(&self, kind: CompileKind) -> &[Cfg]
pub fn cfg(&self, kind: CompileKind) -> &[Cfg]
Gets the list of cfgs printed out from the compiler for the specified kind.
sourcepub fn info(&self, kind: CompileKind) -> &TargetInfo
pub fn info(&self, kind: CompileKind) -> &TargetInfo
sourcepub fn get_info(&self, kind: CompileKind) -> Option<&TargetInfo>
pub fn get_info(&self, kind: CompileKind) -> Option<&TargetInfo>
Information about the given target platform, learned by querying rustc.
Returns None if the target platform described by kind can’t be found.
sourcepub fn target_config(&self, kind: CompileKind) -> &TargetConfig
pub fn target_config(&self, kind: CompileKind) -> &TargetConfig
Gets the target configuration for a particular host or target.
sourcepub fn script_override(
&self,
lib_name: &str,
kind: CompileKind
) -> Option<&BuildOutput>
pub fn script_override( &self, lib_name: &str, kind: CompileKind ) -> Option<&BuildOutput>
If a build script is overridden, this returns the BuildOutput to use.
lib_name is the links library name and kind is whether it is for
Host or Target.
Auto Trait Implementations§
impl<'cfg> !RefUnwindSafe for RustcTargetData<'cfg>
impl<'cfg> !Send for RustcTargetData<'cfg>
impl<'cfg> !Sync for RustcTargetData<'cfg>
impl<'cfg> Unpin for RustcTargetData<'cfg>
impl<'cfg> !UnwindSafe for RustcTargetData<'cfg>
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
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: 1096 bytes