[][src]Struct cranelift_codegen::ir::instructions::ValueTypeSet

pub struct ValueTypeSet {
    pub lanes: BitSet<u16>,
    pub ints: BitSet<u8>,
    pub floats: BitSet<u8>,
    pub bools: BitSet<u8>,
    pub refs: BitSet<u8>,
}

A value type set describes the permitted set of types for a type variable.

Fields

lanes: BitSet<u16>

Allowed lane sizes

ints: BitSet<u8>

Allowed int widths

floats: BitSet<u8>

Allowed float widths

bools: BitSet<u8>

Allowed bool widths

refs: BitSet<u8>

Allowed ref widths

Methods

impl ValueTypeSet[src]

pub fn contains(self, typ: Type) -> bool[src]

Does typ belong to this set?

pub fn example(self) -> Type[src]

Get an example member of this type set.

This is used for error messages to avoid suggesting invalid types.

Trait Implementations

impl Debug for ValueTypeSet[src]

impl PartialEq<ValueTypeSet> for ValueTypeSet[src]

impl Eq for ValueTypeSet[src]

impl Copy for ValueTypeSet[src]

impl StructuralPartialEq for ValueTypeSet[src]

impl StructuralEq for ValueTypeSet[src]

impl Clone for ValueTypeSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.