pub trait AnyType<'ctx>: AsTypeRef + Debug {
    fn as_any_type_enum(&self) -> AnyTypeEnum<'ctx> { ... }
    fn print_to_string(&self) -> LLVMString { ... }
}
Expand description

Represents any LLVM type.

Provided Methods

Returns an AnyTypeEnum that represents the current type.

Prints the definition of a Type to a LLVMString.

Implementors