pub trait InternalCtxt: Ctxt { }Expand description
A marker trait for a Ctxt that does not emit any diagnostics of its own.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
impl<'a, T> InternalCtxt for Box<T>where
T: InternalCtxt + ?Sized,
Available on crate feature
alloc only.impl<'a, T> InternalCtxt for Arc<T>where
T: InternalCtxt + ?Sized,
Available on crate feature
alloc only.