Struct rustc_target::abi::call::FnType[][src]

pub struct FnType<'a, Ty> {
    pub args: Vec<ArgType<'a, Ty>>,
    pub ret: ArgType<'a, Ty>,
    pub variadic: bool,
    pub conv: Conv,
}

Metadata describing how the arguments to a native function should be passed in order to respect the native ABI.

I will do my best to describe this structure, but these comments are reverse-engineered and may be inaccurate. -NDM

Fields

The LLVM types of each argument.

LLVM return type.

Methods

impl<'a, Ty> FnType<'a, Ty>
[src]

Trait Implementations

impl<'a, Ty: Debug> Debug for FnType<'a, Ty>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a, Ty> Send for FnType<'a, Ty> where
    Ty: Send

impl<'a, Ty> Sync for FnType<'a, Ty> where
    Ty: Sync