pub struct RustcTargetData<'cfg> {
    pub rustc: Rustc,
    pub config: &'cfg Config,
    /* private fields */
}
Expand description

Collection of information about rustc and the host and target.

Fields§

§rustc: Rustc

Information about rustc itself.

§config: &'cfg Config

Config

Implementations§

source§

impl<'cfg> RustcTargetData<'cfg>

source

pub fn new( ws: &Workspace<'cfg>, requested_kinds: &[CompileKind] ) -> CargoResult<RustcTargetData<'cfg>>

source

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.

source

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.

source

pub fn cfg(&self, kind: CompileKind) -> &[Cfg]

Gets the list of cfgs printed out from the compiler for the specified kind.

source

pub fn info(&self, kind: CompileKind) -> &TargetInfo

Information about the given target platform, learned by querying rustc.

Panics

Panics, if the target platform described by kind can’t be found. See get_info for a non-panicking alternative.

source

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.

source

pub fn target_config(&self, kind: CompileKind) -> &TargetConfig

Gets the target configuration for a particular host or target.

source

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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, U> Into<U> for Twhere 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<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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.
§

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

§

fn vzip(self) -> V