Enum rustc_const_eval::interpret::InvalidProgramInfo[][src]

pub enum InvalidProgramInfo<'tcx> {
    TooGeneric,
    ReferencedConstant,
    AlreadyReported(ErrorReported),
    Layout(LayoutError<'tcx>),
    TransmuteSizeDiff(&'tcx TyS<'tcx>, &'tcx TyS<'tcx>),
    SizeOfUnsizedType(&'tcx TyS<'tcx>),
}
Expand description

Error information for when the program we executed turned out not to actually be a valid program. This cannot happen in stand-alone Miri, but it can happen during CTFE/ConstProp where we work on generic code or execution does not have all information available.

Variants

TooGeneric

Resolution can fail if we are in a too generic context.

ReferencedConstant

Cannot compute this constant because it depends on another one which already produced an error.

AlreadyReported(ErrorReported)

Abort in case errors are already reported.

Tuple Fields of AlreadyReported

0: ErrorReported
Layout(LayoutError<'tcx>)

An error occurred during layout computation.

Tuple Fields of Layout

0: LayoutError<'tcx>
TransmuteSizeDiff(&'tcx TyS<'tcx>, &'tcx TyS<'tcx>)

An invalid transmute happened.

Tuple Fields of TransmuteSizeDiff

0: &'tcx TyS<'tcx>1: &'tcx TyS<'tcx>
SizeOfUnsizedType(&'tcx TyS<'tcx>)

SizeOf of unsized type was requested.

Tuple Fields of SizeOfUnsizedType

0: &'tcx TyS<'tcx>

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Layout

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: 24 bytes

Size for each variant: