pub enum InvalidProgramInfo<'tcx> {
    TooGeneric,
    ReferencedConstant,
    AlreadyReported(ErrorGuaranteed),
    Layout(LayoutError<'tcx>),
    FnAbiAdjustForForeignAbi(AdjustForForeignAbiError),
    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

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(ErrorGuaranteed)

Abort in case errors are already reported.

Layout(LayoutError<'tcx>)

An error occurred during layout computation.

FnAbiAdjustForForeignAbi(AdjustForForeignAbiError)

An error occurred during FnAbi computation: the passed –target lacks FFI support (which unfortunately typeck does not reject). Not using FnAbiError as that contains a nested LayoutError.

SizeOfUnsizedType(Ty<'tcx>)

SizeOf of unsized type was requested.

Trait Implementations

Formats the value using the given formatter. Read more

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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

Size for each variant:

  • TooGeneric: 0 bytes
  • ReferencedConstant: 0 bytes
  • AlreadyReported: 0 bytes
  • Layout: 56 bytes
  • FnAbiAdjustForForeignAbi: 8 bytes
  • SizeOfUnsizedType: 8 bytes