1use crate::type_aliases::type_id::TypeId; 2 3#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] 4pub struct Obj { 5 pub(crate) ty: TypeId, 6}