pub enum Constant<'tcx> {
}Expand description
A LitKind-like enum to fold constant Exprs into.
Variants§
Adt(Const<'tcx>)
Str(String)
A String (e.g., “abc”).
Binary(Vec<u8>)
A binary string (e.g., b"abc").
Char(char)
A single char (e.g., 'a').
Int(u128)
An integer’s bit representation.
F16(u16)
An f16 bitcast to a u16.
F32(f32)
An f32.
F64(f64)
An f64.
F128(u128)
An f128 bitcast to a u128.
Bool(bool)
true or false.
Vec(Vec<Constant<'tcx>>)
An array of constants.
Repeat(Box<Constant<'tcx>>, u64)
Also an array, but with only one constant, repeated N times.
Tuple(Vec<Constant<'tcx>>)
A tuple of constants.
RawPtr(u128)
A raw pointer.
Ref(Box<Constant<'tcx>>)
A reference
Err
A literal with syntax error.
Implementations§
Source§impl Constant<'_>
 
impl Constant<'_>
pub fn partial_cmp( tcx: TyCtxt<'_>, cmp_type: Ty<'_>, left: &Self, right: &Self, ) -> Option<Ordering>
Sourcepub fn int_value(&self, tcx: TyCtxt<'_>, val_type: Ty<'_>) -> Option<FullInt>
 
pub fn int_value(&self, tcx: TyCtxt<'_>, val_type: Ty<'_>) -> Option<FullInt>
Returns the integer value or None if self or val_type is not integer type.
pub fn peel_refs(self) -> Self
fn parse_f16(s: &str) -> Self
fn parse_f128(s: &str) -> Self
Trait Implementations§
Auto Trait Implementations§
impl<'tcx> Freeze for Constant<'tcx>
impl<'tcx> !RefUnwindSafe for Constant<'tcx>
impl<'tcx> Send for Constant<'tcx>
impl<'tcx> Sync for Constant<'tcx>
impl<'tcx> Unpin for Constant<'tcx>
impl<'tcx> !UnwindSafe for Constant<'tcx>
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreLayout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 48 bytes
Size for each variant:
Adt: 40 bytesStr: 32 bytesBinary: 32 bytesChar: 12 bytesInt: 32 bytesF16: 10 bytesF32: 12 bytesF64: 16 bytesF128: 32 bytesBool: 9 bytesVec: 32 bytesRepeat: 24 bytesTuple: 32 bytesRawPtr: 32 bytesRef: 16 bytesErr: 0 bytes