Enum target_lexicon::BinaryFormat[][src]

pub enum BinaryFormat {
    Unknown,
    Elf,
    Coff,
    Macho,
    Wasm,
}

The "binary format" field, which is usually omitted, and the binary format is implied by the other fields.

Variants

Methods

impl BinaryFormat
[src]

Return the binary format for the current host.

Trait Implementations

impl Copy for BinaryFormat
[src]

impl Clone for BinaryFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BinaryFormat
[src]

Formats the value using the given formatter. Read more

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

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

Formats the value using the given formatter. Read more

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

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

Auto Trait Implementations