Trait inkwell::values::PointerMathValue

source ·
pub unsafe trait PointerMathValue<'ctx>: BasicValue<'ctx> {
    type BaseType: PointerMathType<'ctx>;

    // Required method
    unsafe fn new(value: LLVMValueRef) -> Self;
}

Required Associated Types§

Required Methods§

source

unsafe fn new(value: LLVMValueRef) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'ctx> PointerMathValue<'ctx> for PointerValue<'ctx>

§

type BaseType = PointerType<'ctx>

source§

impl<'ctx> PointerMathValue<'ctx> for VectorValue<'ctx>

§

type BaseType = VectorType<'ctx>