Enum cleaver::fe::error::CheckError
[−]
[src]
pub enum CheckError<'a> { Return(String), Call(CallsUnknownFunction<'a>), Type(TypeError<'a>), }
Variants
Return(String)
Call(CallsUnknownFunction<'a>)
Type(TypeError<'a>)
Trait Implementations
impl<'a> From<CallsUnknownFunction<'a>> for CheckError<'a>
[src]
fn from(err: CallsUnknownFunction<'a>) -> CheckError<'a>
Performs the conversion.
impl<'a> From<TypeError<'a>> for CheckError<'a>
[src]
fn from(err: TypeError<'a>) -> CheckError<'a>
Performs the conversion.
impl<'a> PartialEq for CheckError<'a>
[src]
fn eq(&self, __arg_0: &CheckError<'a>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &CheckError<'a>) -> bool
This method tests for !=
.
impl<'a> Debug for CheckError<'a>
[src]
impl<'a> Display for CheckError<'a>
[src]
impl<'a> Error for CheckError<'a>
[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl<'a> From<String> for CheckError<'a>
[src]
fn from(s: String) -> CheckError<'a>
Performs the conversion.