Enum rustc_middle::mir::interpret::InvalidProgramInfo [−][src]
pub enum InvalidProgramInfo<'tcx> {
TooGeneric,
ReferencedConstant,
AlreadyReported(ErrorReported),
Layout(LayoutError<'tcx>),
TransmuteSizeDiff(Ty<'tcx>, Ty<'tcx>),
SizeOfUnsizedType(Ty<'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
Resolution can fail if we are in a too generic context.
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
Layout(LayoutError<'tcx>)
An error occurred during layout computation.
Tuple Fields of Layout
0: LayoutError<'tcx>
An invalid transmute happened.
SizeOfUnsizedType(Ty<'tcx>)
SizeOf of unsized type was requested.
Tuple Fields of SizeOfUnsizedType
0: Ty<'tcx>
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for InvalidProgramInfo<'tcx>
impl<'tcx> !Send for InvalidProgramInfo<'tcx>
impl<'tcx> !Sync for InvalidProgramInfo<'tcx>
impl<'tcx> Unpin for InvalidProgramInfo<'tcx>
impl<'tcx> !UnwindSafe for InvalidProgramInfo<'tcx>
Blanket Implementations
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:
TooGeneric
: 0 bytesReferencedConstant
: 0 bytesAlreadyReported
: 0 bytesLayout
: 16 bytesTransmuteSizeDiff
: 16 bytesSizeOfUnsizedType
: 8 bytes