[][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 !RefUnwindSafe for IsaSpec

impl Send for IsaSpec

impl Sync for IsaSpec

impl Unpin for IsaSpec

impl !UnwindSafe for IsaSpec

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.