Skip to main content

VectorBaseValue

Trait VectorBaseValue 

Source
pub unsafe trait VectorBaseValue<'ctx>: BasicValue<'ctx> {
    // Required method
    unsafe fn new(value: LLVMValueRef) -> Self;
}
Expand description

Represents a value which is permitted in vector operations, either fixed or scalable

Required Methods§

Source

unsafe fn new(value: LLVMValueRef) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'ctx> VectorBaseValue<'ctx> for ScalableVectorValue<'ctx>

Source§

impl<'ctx> VectorBaseValue<'ctx> for VectorValue<'ctx>