pub enum IsaSpec {
None(Flags),
Some(Vec<OwnedTargetIsa>),
}
Expand description
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<OwnedTargetIsa>)
The parsed file does contain isa
commands.
Each isa
command is used to configure a TargetIsa
trait object.
Implementations§
Auto Trait Implementations§
impl Freeze for IsaSpec
impl !RefUnwindSafe for IsaSpec
impl Send for IsaSpec
impl Sync for IsaSpec
impl Unpin for IsaSpec
impl !UnwindSafe for IsaSpec
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more