Enum target_lexicon::OperatingSystem[][src]

pub enum OperatingSystem {
    Unknown,
    Bitrig,
    Cloudabi,
    Darwin,
    Dragonfly,
    Emscripten,
    Freebsd,
    Fuchsia,
    Haiku,
    Ios,
    L4re,
    Linux,
    Nebulet,
    Netbsd,
    Openbsd,
    Redox,
    Solaris,
    Windows,
}

The "operating system" field, which sometimes implies an environment, and sometimes isn't an actual operating system.

Variants

Methods

impl OperatingSystem
[src]

Return the operating system for the current host.

Trait Implementations

impl Copy for OperatingSystem
[src]

impl Clone for OperatingSystem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OperatingSystem
[src]

Formats the value using the given formatter. Read more

impl PartialEq for OperatingSystem
[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 OperatingSystem
[src]

impl Hash for OperatingSystem
[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 OperatingSystem
[src]

Formats the value using the given formatter. Read more

impl FromStr for OperatingSystem
[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 OperatingSystem
[src]

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

Auto Trait Implementations