pub trait TyEncoder: SpanEncoder {
type I: Interner;
const CLEAR_CROSS_CRATE: bool;
// Required methods
fn position(&self) -> usize;
fn type_shorthands(
&mut self,
) -> &mut FxHashMap<<Self::I as Interner>::Ty, usize>;
fn predicate_shorthands(
&mut self,
) -> &mut FxHashMap<PredicateKind<Self::I>, usize>;
fn encode_alloc_id(&mut self, alloc_id: &<Self::I as Interner>::AllocId);
}
Required Associated Constants§
const CLEAR_CROSS_CRATE: bool
Required Associated Types§
Required Methods§
fn position(&self) -> usize
fn type_shorthands( &mut self, ) -> &mut FxHashMap<<Self::I as Interner>::Ty, usize>
fn predicate_shorthands( &mut self, ) -> &mut FxHashMap<PredicateKind<Self::I>, usize>
fn encode_alloc_id(&mut self, alloc_id: &<Self::I as Interner>::AllocId)
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.