Struct cranelift_codegen::verifier::VerifierErrors[][src]

pub struct VerifierErrors(pub Vec<VerifierError>);

List of verifier errors.

Methods

impl VerifierErrors
[src]

Return a new VerifierErrors struct.

Return whether no errors were reported.

Return whether one or more errors were reported.

Trait Implementations

impl Debug for VerifierErrors
[src]

Formats the value using the given formatter. Read more

impl Default for VerifierErrors
[src]

Returns the "default value" for a type. Read more

impl PartialEq for VerifierErrors
[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 VerifierErrors
[src]

impl From<Vec<VerifierError>> for VerifierErrors
[src]

Performs the conversion.

impl Into<Vec<VerifierError>> for VerifierErrors
[src]

Important traits for Vec<u8>

Performs the conversion.

impl Display for VerifierErrors
[src]

Formats the value using the given formatter. Read more

impl From<VerifierErrors> for CodegenError
[src]

Performs the conversion.

Auto Trait Implementations