pub trait ToLLVMType: Type {
// Required method
fn converter(&self) -> ToLLVMTypeFn;
}Expand description
Interface for converting to an LLVM type.
Required Methods§
Sourcefn converter(&self) -> ToLLVMTypeFn
fn converter(&self) -> ToLLVMTypeFn
Get a function to convert self to an LLVM type.