Trait DataValueExt

Source
pub trait DataValueExt: Sized {
Show 64 methods // Required methods fn int(n: i128, ty: Type) -> ValueResult<Self>; fn into_int_signed(self) -> ValueResult<i128>; fn into_int_unsigned(self) -> ValueResult<u128>; fn float(n: u64, ty: Type) -> ValueResult<Self>; fn into_float(self) -> ValueResult<f64>; fn is_float(&self) -> bool; fn is_nan(&self) -> ValueResult<bool>; fn bool(b: bool, vec_elem: bool, ty: Type) -> ValueResult<Self>; fn into_bool(self) -> ValueResult<bool>; fn vector(v: [u8; 16], ty: Type) -> ValueResult<Self>; fn into_array(&self) -> ValueResult<[u8; 16]>; fn convert(self, kind: ValueConversionKind) -> ValueResult<Self>; fn concat(self, other: Self) -> ValueResult<Self>; fn is_negative(&self) -> ValueResult<bool>; fn is_zero(&self) -> ValueResult<bool>; fn umax(self, other: Self) -> ValueResult<Self>; fn smax(self, other: Self) -> ValueResult<Self>; fn umin(self, other: Self) -> ValueResult<Self>; fn smin(self, other: Self) -> ValueResult<Self>; fn uno(&self, other: &Self) -> ValueResult<bool>; fn add(self, other: Self) -> ValueResult<Self>; fn sub(self, other: Self) -> ValueResult<Self>; fn mul(self, other: Self) -> ValueResult<Self>; fn udiv(self, other: Self) -> ValueResult<Self>; fn sdiv(self, other: Self) -> ValueResult<Self>; fn urem(self, other: Self) -> ValueResult<Self>; fn srem(self, other: Self) -> ValueResult<Self>; fn sqrt(self) -> ValueResult<Self>; fn fma(self, a: Self, b: Self) -> ValueResult<Self>; fn abs(self) -> ValueResult<Self>; fn uadd_checked(self, other: Self) -> ValueResult<Option<Self>>; fn sadd_checked(self, other: Self) -> ValueResult<Option<Self>>; fn uadd_overflow(self, other: Self) -> ValueResult<(Self, bool)>; fn sadd_overflow(self, other: Self) -> ValueResult<(Self, bool)>; fn usub_overflow(self, other: Self) -> ValueResult<(Self, bool)>; fn ssub_overflow(self, other: Self) -> ValueResult<(Self, bool)>; fn umul_overflow(self, other: Self) -> ValueResult<(Self, bool)>; fn smul_overflow(self, other: Self) -> ValueResult<(Self, bool)>; fn neg(self) -> ValueResult<Self>; fn copysign(self, sign: Self) -> ValueResult<Self>; fn ceil(self) -> ValueResult<Self>; fn floor(self) -> ValueResult<Self>; fn trunc(self) -> ValueResult<Self>; fn nearest(self) -> ValueResult<Self>; fn uadd_sat(self, other: Self) -> ValueResult<Self>; fn sadd_sat(self, other: Self) -> ValueResult<Self>; fn usub_sat(self, other: Self) -> ValueResult<Self>; fn ssub_sat(self, other: Self) -> ValueResult<Self>; fn shl(self, other: Self) -> ValueResult<Self>; fn ushr(self, other: Self) -> ValueResult<Self>; fn sshr(self, other: Self) -> ValueResult<Self>; fn rotl(self, other: Self) -> ValueResult<Self>; fn rotr(self, other: Self) -> ValueResult<Self>; fn and(self, other: Self) -> ValueResult<Self>; fn or(self, other: Self) -> ValueResult<Self>; fn xor(self, other: Self) -> ValueResult<Self>; fn not(self) -> ValueResult<Self>; fn count_ones(self) -> ValueResult<Self>; fn leading_ones(self) -> ValueResult<Self>; fn leading_zeros(self) -> ValueResult<Self>; fn trailing_zeros(self) -> ValueResult<Self>; fn reverse_bits(self) -> ValueResult<Self>; fn swap_bytes(self) -> ValueResult<Self>; fn iter_lanes(&self, ty: Type) -> ValueResult<DataValueIterator>;
}

Required Methods§

Source

fn int(n: i128, ty: Type) -> ValueResult<Self>

Source

fn into_int_signed(self) -> ValueResult<i128>

Source

fn into_int_unsigned(self) -> ValueResult<u128>

Source

fn float(n: u64, ty: Type) -> ValueResult<Self>

Source

fn into_float(self) -> ValueResult<f64>

Source

fn is_float(&self) -> bool

Source

fn is_nan(&self) -> ValueResult<bool>

Source

fn bool(b: bool, vec_elem: bool, ty: Type) -> ValueResult<Self>

Source

fn into_bool(self) -> ValueResult<bool>

Source

fn vector(v: [u8; 16], ty: Type) -> ValueResult<Self>

Source

fn into_array(&self) -> ValueResult<[u8; 16]>

Source

fn convert(self, kind: ValueConversionKind) -> ValueResult<Self>

Source

fn concat(self, other: Self) -> ValueResult<Self>

Source

fn is_negative(&self) -> ValueResult<bool>

Source

fn is_zero(&self) -> ValueResult<bool>

Source

fn umax(self, other: Self) -> ValueResult<Self>

Source

fn smax(self, other: Self) -> ValueResult<Self>

Source

fn umin(self, other: Self) -> ValueResult<Self>

Source

fn smin(self, other: Self) -> ValueResult<Self>

Source

fn uno(&self, other: &Self) -> ValueResult<bool>

Source

fn add(self, other: Self) -> ValueResult<Self>

Source

fn sub(self, other: Self) -> ValueResult<Self>

Source

fn mul(self, other: Self) -> ValueResult<Self>

Source

fn udiv(self, other: Self) -> ValueResult<Self>

Source

fn sdiv(self, other: Self) -> ValueResult<Self>

Source

fn urem(self, other: Self) -> ValueResult<Self>

Source

fn srem(self, other: Self) -> ValueResult<Self>

Source

fn sqrt(self) -> ValueResult<Self>

Source

fn fma(self, a: Self, b: Self) -> ValueResult<Self>

Source

fn abs(self) -> ValueResult<Self>

Source

fn uadd_checked(self, other: Self) -> ValueResult<Option<Self>>

Source

fn sadd_checked(self, other: Self) -> ValueResult<Option<Self>>

Source

fn uadd_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source

fn sadd_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source

fn usub_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source

fn ssub_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source

fn umul_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source

fn smul_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source

fn neg(self) -> ValueResult<Self>

Source

fn copysign(self, sign: Self) -> ValueResult<Self>

Source

fn ceil(self) -> ValueResult<Self>

Source

fn floor(self) -> ValueResult<Self>

Source

fn trunc(self) -> ValueResult<Self>

Source

fn nearest(self) -> ValueResult<Self>

Source

fn uadd_sat(self, other: Self) -> ValueResult<Self>

Source

fn sadd_sat(self, other: Self) -> ValueResult<Self>

Source

fn usub_sat(self, other: Self) -> ValueResult<Self>

Source

fn ssub_sat(self, other: Self) -> ValueResult<Self>

Source

fn shl(self, other: Self) -> ValueResult<Self>

Source

fn ushr(self, other: Self) -> ValueResult<Self>

Source

fn sshr(self, other: Self) -> ValueResult<Self>

Source

fn rotl(self, other: Self) -> ValueResult<Self>

Source

fn rotr(self, other: Self) -> ValueResult<Self>

Source

fn and(self, other: Self) -> ValueResult<Self>

Source

fn or(self, other: Self) -> ValueResult<Self>

Source

fn xor(self, other: Self) -> ValueResult<Self>

Source

fn not(self) -> ValueResult<Self>

Source

fn count_ones(self) -> ValueResult<Self>

Source

fn leading_ones(self) -> ValueResult<Self>

Source

fn leading_zeros(self) -> ValueResult<Self>

Source

fn trailing_zeros(self) -> ValueResult<Self>

Source

fn reverse_bits(self) -> ValueResult<Self>

Source

fn swap_bytes(self) -> ValueResult<Self>

Source

fn iter_lanes(&self, ty: Type) -> ValueResult<DataValueIterator>

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.

Implementations on Foreign Types§

Source§

impl DataValueExt for DataValue

Source§

fn int(n: i128, ty: Type) -> ValueResult<Self>

Source§

fn into_int_signed(self) -> ValueResult<i128>

Source§

fn into_int_unsigned(self) -> ValueResult<u128>

Source§

fn float(bits: u64, ty: Type) -> ValueResult<Self>

Source§

fn into_float(self) -> ValueResult<f64>

Source§

fn is_float(&self) -> bool

Source§

fn is_nan(&self) -> ValueResult<bool>

Source§

fn bool(b: bool, vec_elem: bool, ty: Type) -> ValueResult<Self>

Source§

fn into_bool(self) -> ValueResult<bool>

Source§

fn vector(v: [u8; 16], ty: Type) -> ValueResult<Self>

Source§

fn into_array(&self) -> ValueResult<[u8; 16]>

Source§

fn convert(self, kind: ValueConversionKind) -> ValueResult<Self>

Source§

fn concat(self, other: Self) -> ValueResult<Self>

Source§

fn is_negative(&self) -> ValueResult<bool>

Source§

fn is_zero(&self) -> ValueResult<bool>

Source§

fn umax(self, other: Self) -> ValueResult<Self>

Source§

fn smax(self, other: Self) -> ValueResult<Self>

Source§

fn umin(self, other: Self) -> ValueResult<Self>

Source§

fn smin(self, other: Self) -> ValueResult<Self>

Source§

fn uno(&self, other: &Self) -> ValueResult<bool>

Source§

fn add(self, other: Self) -> ValueResult<Self>

Source§

fn sub(self, other: Self) -> ValueResult<Self>

Source§

fn mul(self, other: Self) -> ValueResult<Self>

Source§

fn sdiv(self, other: Self) -> ValueResult<Self>

Source§

fn udiv(self, other: Self) -> ValueResult<Self>

Source§

fn srem(self, other: Self) -> ValueResult<Self>

Source§

fn urem(self, other: Self) -> ValueResult<Self>

Source§

fn sqrt(self) -> ValueResult<Self>

Source§

fn fma(self, b: Self, c: Self) -> ValueResult<Self>

Source§

fn abs(self) -> ValueResult<Self>

Source§

fn sadd_checked(self, other: Self) -> ValueResult<Option<Self>>

Source§

fn uadd_checked(self, other: Self) -> ValueResult<Option<Self>>

Source§

fn sadd_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source§

fn uadd_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source§

fn ssub_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source§

fn usub_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source§

fn smul_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source§

fn umul_overflow(self, other: Self) -> ValueResult<(Self, bool)>

Source§

fn neg(self) -> ValueResult<Self>

Source§

fn copysign(self, sign: Self) -> ValueResult<Self>

Source§

fn ceil(self) -> ValueResult<Self>

Source§

fn floor(self) -> ValueResult<Self>

Source§

fn trunc(self) -> ValueResult<Self>

Source§

fn nearest(self) -> ValueResult<Self>

Source§

fn sadd_sat(self, other: Self) -> ValueResult<Self>

Source§

fn uadd_sat(self, other: Self) -> ValueResult<Self>

Source§

fn ssub_sat(self, other: Self) -> ValueResult<Self>

Source§

fn usub_sat(self, other: Self) -> ValueResult<Self>

Source§

fn shl(self, other: Self) -> ValueResult<Self>

Source§

fn ushr(self, other: Self) -> ValueResult<Self>

Source§

fn sshr(self, other: Self) -> ValueResult<Self>

Source§

fn rotl(self, other: Self) -> ValueResult<Self>

Source§

fn rotr(self, other: Self) -> ValueResult<Self>

Source§

fn and(self, other: Self) -> ValueResult<Self>

Source§

fn or(self, other: Self) -> ValueResult<Self>

Source§

fn xor(self, other: Self) -> ValueResult<Self>

Source§

fn not(self) -> ValueResult<Self>

Source§

fn count_ones(self) -> ValueResult<Self>

Source§

fn leading_ones(self) -> ValueResult<Self>

Source§

fn leading_zeros(self) -> ValueResult<Self>

Source§

fn trailing_zeros(self) -> ValueResult<Self>

Source§

fn reverse_bits(self) -> ValueResult<Self>

Source§

fn swap_bytes(self) -> ValueResult<Self>

Source§

fn iter_lanes(&self, ty: Type) -> ValueResult<DataValueIterator>

Implementors§