Enum cleaver::fe::error::CheckError [] [src]

pub enum CheckError<'a> {
    Return(String),
    Call(CallsUnknownFunction<'a>),
    Type(TypeError<'a>),
}

Variants

Trait Implementations

impl<'a> From<CallsUnknownFunction<'a>> for CheckError<'a>
[src]

Performs the conversion.

impl<'a> From<TypeError<'a>> for CheckError<'a>
[src]

Performs the conversion.

impl<'a> PartialEq for CheckError<'a>
[src]

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

This method tests for !=.

impl<'a> Debug for CheckError<'a>
[src]

Formats the value using the given formatter.

impl<'a> Display for CheckError<'a>
[src]

Formats the value using the given formatter.

impl<'a> Error for CheckError<'a>
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl<'a> From<String> for CheckError<'a>
[src]

Performs the conversion.