pub trait HashConsed {
    type Inner;
}
Expand description

Internal trait used to recognize hashconsed things.

The only purpose of this trait (currently) is to simplify the type signature of the collections of hashconsed things.

Required Associated Types§

source

type Inner

Elements stored inside a hashconsed value.

Implementors§

source§

impl<T> HashConsed for HConsed<T>

§

type Inner = T