intuicio_frontend_assembler

Type Alias AsmLiteral

Source
pub type AsmLiteral = SerdeLiteral;

Aliased Type§

enum AsmLiteral {
Show 18 variants Unit, Bool(bool), I8(i8), I16(i16), I32(i32), I64(i64), I128(i128), Isize(isize), U8(u8), U16(u16), U32(u32), U64(u64), U128(u128), Usize(usize), F32(f32), F64(f64), Char(char), String(String),
}

Variants§

§

Unit

§

Bool(bool)

§

I8(i8)

§

I16(i16)

§

I32(i32)

§

I64(i64)

§

I128(i128)

§

Isize(isize)

§

U8(u8)

§

U16(u16)

§

U32(u32)

§

U64(u64)

§

U128(u128)

§

Usize(usize)

§

F32(f32)

§

F64(f64)

§

Char(char)

§

String(String)

Trait Implementations

Source§

impl Clone for SerdeLiteral

Source§

fn clone(&self) -> SerdeLiteral

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SerdeLiteral

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for SerdeLiteral

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<SerdeLiteral, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for SerdeLiteral

Source§

fn eq(&self, other: &SerdeLiteral) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for SerdeLiteral

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for SerdeLiteral