pub enum Literal {
F64(f64),
F32(f32),
U32(u32),
I32(i32),
U64(u64),
I64(i64),
Bool(bool),
AbstractInt(i64),
AbstractFloat(f64),
}
Variants§
F64(f64)
May not be NaN or infinity.
F32(f32)
May not be NaN or infinity.
U32(u32)
I32(i32)
U64(u64)
I64(i64)
Bool(bool)
AbstractInt(i64)
AbstractFloat(f64)
Implementations§
source§impl Literal
impl Literal
pub const fn new(value: u8, scalar: Scalar) -> Option<Self>
pub const fn zero(scalar: Scalar) -> Option<Self>
pub const fn one(scalar: Scalar) -> Option<Self>
pub const fn width(&self) -> Bytes
pub const fn scalar(&self) -> Scalar
pub const fn scalar_kind(&self) -> ScalarKind
pub const fn ty_inner(&self) -> TypeInner
Trait Implementations§
source§impl From<Literal> for HashableLiteral
impl From<Literal> for HashableLiteral
source§impl PartialEq for Literal
impl PartialEq for Literal
source§impl PartialOrd for Literal
impl PartialOrd for Literal
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Literal
impl StructuralPartialEq for Literal
Auto Trait Implementations§
impl Freeze for Literal
impl RefUnwindSafe for Literal
impl Send for Literal
impl Sync for Literal
impl Unpin for Literal
impl UnwindSafe for Literal
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