Lines Matching refs:ErrorContext
3 use crate::component::concurrent::{self, ErrorContext, FutureAny, StreamAny};
95 ErrorContext(ErrorContextAny), enumerator
220 InterfaceType::ErrorContext(_) => { in lift()
221 ErrorContext::linear_lift_from_flat(cx, ty, next(src))?.into_val() in lift()
349 InterfaceType::ErrorContext(_) => { in load()
350 ErrorContext::linear_lift_from_memory(cx, ty, bytes)?.into_val() in load()
503 (InterfaceType::ErrorContext(_), Val::ErrorContext(ErrorContextAny(rep))) => { in lower()
510 (InterfaceType::ErrorContext(_), _) => unexpected(ty, self), in lower()
666 (InterfaceType::ErrorContext(_), Val::ErrorContext(ErrorContextAny(rep))) => { in store()
673 (InterfaceType::ErrorContext(_), _) => unexpected(ty, self), in store()
705 Val::ErrorContext(_) => "error-context", in desc()
790 (Self::ErrorContext(l), Self::ErrorContext(r)) => l == r, in eq()
791 (Self::ErrorContext(_), _) => false, in eq()