Struct cranelift_codegen::verifier::VerifierError[][src]

pub struct VerifierError {
    pub location: AnyEntity,
    pub message: String,
}

A verifier error.

Fields

The entity causing the verifier error.

The error message.

Trait Implementations

impl Debug for VerifierError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for VerifierError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for VerifierError
[src]

impl Display for VerifierError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations