Enum target_lexicon::Environment[][src]

pub enum Environment {
    Unknown,
    Android,
    Androideabi,
    Eabi,
    Eabihf,
    Gnu,
    Gnuabi64,
    Gnueabi,
    Gnueabihf,
    Gnuspe,
    Gnux32,
    Musl,
    Musleabi,
    Musleabihf,
    Msvc,
    Uclibc,
}

The "environment" field, which specifies an ABI environment on top of the operating system. In many configurations, this field is omitted, and the environment is implied by the operating system.

Variants

Methods

impl Environment
[src]

Return the environment for the current host.

Trait Implementations

impl Copy for Environment
[src]

impl Clone for Environment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Environment
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Environment
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Environment
[src]

impl Hash for Environment
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for Environment
[src]

Formats the value using the given formatter. Read more

impl FromStr for Environment
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Default for Environment
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Environment

impl Sync for Environment