pub unsafe trait AsTypeRef {
// Required method
fn as_type_ref(&self) -> LLVMTypeRef;
}Expand description
Accessor to the inner LLVM type reference
Required Methods§
Sourcefn as_type_ref(&self) -> LLVMTypeRef
fn as_type_ref(&self) -> LLVMTypeRef
Returns the internal LLVM reference behind the type
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".