Enum polytype::UnificationError
[−]
[src]
pub enum UnificationError {
Occurs(u32),
Failure(Type, Type),
}Variants
Occurs(u32)Occurs is the error when the same type variable occurs in both types in a circular way.
The number of the circular type variable is supplied.
Failure(Type, Type)Failure happens when symbols or type variants don't match.
Trait Implementations
impl Debug for UnificationError[src]
impl Clone for UnificationError[src]
fn clone(&self) -> UnificationError[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for UnificationError[src]
fn eq(&self, __arg_0: &UnificationError) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &UnificationError) -> bool[src]
This method tests for !=.
impl Display for UnificationError[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more