[][src]Struct cranelift_codegen_meta::cdsl::formats::FormatStructure

pub(crate) struct FormatStructure {
    pub num_value_operands: usize,
    pub has_value_list: bool,
    pub imm_field_names: Vec<(&'static str, &'static str)>,
}

A tuple serving as a key to deduplicate InstructionFormat.

Fields

num_value_operands: usizehas_value_list: boolimm_field_names: Vec<(&'static str, &'static str)>

Tuples of (Rust field name / Rust type) for each immediate field.

Trait Implementations

impl Eq for FormatStructure[src]

impl Hash for FormatStructure[src]

impl PartialEq<FormatStructure> for FormatStructure[src]

impl StructuralEq for FormatStructure[src]

impl StructuralPartialEq for FormatStructure[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.