Enum move_model::ty::TypeUnificationError
source · [−]pub enum TypeUnificationError {
TypeMismatch(Type, Type),
ArityMismatch(String, usize, usize),
CyclicSubstitution(Type, Type),
}
Expand description
Represents an error resulting from type unification.
Variants
TypeMismatch(Type, Type)
ArityMismatch(String, usize, usize)
CyclicSubstitution(Type, Type)
Implementations
sourceimpl TypeUnificationError
impl TypeUnificationError
pub fn message(&self, display_context: &TypeDisplayContext<'_>) -> String
Auto Trait Implementations
impl RefUnwindSafe for TypeUnificationError
impl Send for TypeUnificationError
impl Sync for TypeUnificationError
impl Unpin for TypeUnificationError
impl UnwindSafe for TypeUnificationError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more