TargetInfo

Trait TargetInfo 

Source
pub trait TargetInfo {
    // Required methods
    fn target(&self) -> Target;
    fn is_tier_3(&self) -> bool;
}

Required Methods§

Source

fn target(&self) -> Target

Source

fn is_tier_3(&self) -> bool

Marks whether a pre-built std-lib is provided for this target (Tier 1 and Tier 2) via rustup or target needs to be build (Tier 3) See: https://doc.rust-lang.org/nightly/rustc/platform-support.html

Implementors§