[][src]Struct cranelift_codegen_meta::cdsl::typevar::TypeSetBuilder

pub(crate) struct TypeSetBuilder {
    ints: Interval,
    floats: Interval,
    bools: Interval,
    refs: Interval,
    includes_scalars: bool,
    simd_lanes: Interval,
    specials: Vec<SpecialType>,
}

Fields

ints: Intervalfloats: Intervalbools: Intervalrefs: Intervalincludes_scalars: boolsimd_lanes: Intervalspecials: Vec<SpecialType>

Methods

impl TypeSetBuilder[src]

pub fn new() -> Self[src]

pub fn ints(self, interval: impl Into<Interval>) -> Self[src]

pub fn floats(self, interval: impl Into<Interval>) -> Self[src]

pub fn bools(self, interval: impl Into<Interval>) -> Self[src]

pub fn refs(self, interval: impl Into<Interval>) -> Self[src]

pub fn includes_scalars(self, includes_scalars: bool) -> Self[src]

pub fn simd_lanes(self, interval: impl Into<Interval>) -> Self[src]

pub fn specials(self, specials: Vec<SpecialType>) -> Self[src]

pub fn build(self) -> TypeSet[src]

pub fn all() -> TypeSet[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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> 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.