Enum jit::Abi [] [src]

pub enum Abi {
    CDecl,
    VarArg,
    StdCall,
    FastCall,
}

A platform's application binary interface

This describes how the function should be called

Variants

CDecl

The C application binary interface

VarArg

The C application binary interface with variable arguments

StdCall

A Windows application binary interface*-+

FastCall

A Windows application binary interface

Trait Implementations

impl Default for Abi

fn default() -> Abi

Derived Implementations

impl Copy for Abi

impl Clone for Abi

fn clone(&self) -> Abi

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