Enum gluon_check::kindcheck::KindError
source · pub enum KindError<I, T> {
UndefinedType(I),
UndefinedField(T, I),
}
Expand description
Enumeration possible errors other than mismatch and occurs when kindchecking
Variants§
Implementations§
Trait Implementations§
source§impl<I: PartialEq, T: PartialEq> PartialEq for KindError<I, T>
impl<I: PartialEq, T: PartialEq> PartialEq for KindError<I, T>
impl<I: Eq, T: Eq> Eq for KindError<I, T>
impl<I, T> StructuralEq for KindError<I, T>
impl<I, T> StructuralPartialEq for KindError<I, T>
Auto Trait Implementations§
impl<I, T> RefUnwindSafe for KindError<I, T>where
I: RefUnwindSafe,
T: RefUnwindSafe,
impl<I, T> Send for KindError<I, T>
impl<I, T> Sync for KindError<I, T>
impl<I, T> Unpin for KindError<I, T>
impl<I, T> UnwindSafe for KindError<I, T>where
I: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more