[][src]Enum cranelift_reader::IsaSpec

pub enum IsaSpec {
    None(Flags),
    Some(Vec<Box<dyn TargetIsa>>),
}

The ISA specifications in a .clif file.

Variants

None(Flags)

The parsed file does not contain any isa commands, but it may contain set commands which are reflected in the finished Flags object.

Some(Vec<Box<dyn TargetIsa>>)

The parsed file does contain isa commands. Each isa command is used to configure a TargetIsa trait object.

Methods

impl IsaSpec[src]

pub fn unique_isa(&self) -> Option<&dyn TargetIsa>[src]

If the IsaSpec contains exactly 1 TargetIsa we return a reference to it

Auto Trait Implementations

impl !Send for IsaSpec

impl Sync for IsaSpec

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.