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

pub enum AbiArchitecture {
    RustArch,
    AllArch,
    Archs(u32),
}

Variants

RustArch

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

AllArch

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

Archs

Multiple architectures (bitset)

Trait Implementations

Derived Implementations

impl Clone for AbiArchitecture

fn clone(&self) -> AbiArchitecture

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

impl Copy for AbiArchitecture