pub enum ApplicationResult {
Resolved(TypeId),
NotApplication(TypeId),
DepthExceeded(TypeId),
ResolutionFailed(TypeId),
}Expand description
Result of application type evaluation.
Variants§
Resolved(TypeId)
Successfully evaluated to a concrete type
NotApplication(TypeId)
The type is not an application type (pass through)
DepthExceeded(TypeId)
Recursion limit reached
ResolutionFailed(TypeId)
Symbol resolution failed
Trait Implementations§
Source§impl Clone for ApplicationResult
impl Clone for ApplicationResult
Source§fn clone(&self) -> ApplicationResult
fn clone(&self) -> ApplicationResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ApplicationResult
impl Debug for ApplicationResult
Source§impl PartialEq for ApplicationResult
impl PartialEq for ApplicationResult
impl Eq for ApplicationResult
impl StructuralPartialEq for ApplicationResult
Auto Trait Implementations§
impl Freeze for ApplicationResult
impl RefUnwindSafe for ApplicationResult
impl Send for ApplicationResult
impl Sync for ApplicationResult
impl Unpin for ApplicationResult
impl UnsafeUnpin for ApplicationResult
impl UnwindSafe for ApplicationResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.