pub trait AnyValue<'ctx>: AsValueRef + Debug {
    fn as_any_value_enum(&self) -> AnyValueEnum<'ctx> { ... }
    fn print_to_string(&self) -> LLVMString { ... }
}
Expand description

Defines any struct wrapping an LLVM value.

Provided Methods

Returns an enum containing a typed version of AnyValue.

Prints a value to a LLVMString

Implementors