Enum syntex_syntax::abi::AbiArchitecture [] [src]

pub enum AbiArchitecture {
    Rust,
    All,
    Archs(u32),
}

Variants

Rust

Not a real ABI (e.g., intrinsic)

All

An ABI that specifies cross-platform defaults (e.g., "C")

Archs(u32)

Multiple architectures (bitset)

Trait Implementations

impl Clone for AbiArchitecture
[src]

fn clone(&self) -> AbiArchitecture

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for AbiArchitecture
[src]