pub type RegionDbVar = DeBruijnVar<RegionId>;Aliased Type§
pub enum RegionDbVar {
Bound(DeBruijnId, RegionId),
Free(RegionId),
}Variants§
Bound(DeBruijnId, RegionId)
A variable attached to the nth binder, counting from the innermost.
Free(RegionId)
A variable attached to the outermost binder (the one on the item). This is not used within
Charon itself, instead ewe insert it at the end if --unbind-item-vars is set.