1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
use super::*; #[derive(Clone)] pub struct TypeRef(pub Row); impl TypeRef { pub fn scope(&self) -> ResolutionScope { self.0.decode(0) } pub fn name(&self) -> &'static str { self.0.str(1) } pub fn namespace(&self) -> &'static str { self.0.str(2) } pub fn full_name(&self) -> (&'static str, &'static str) { (self.namespace(), self.name()) } pub fn resolve(&self) -> TypeDef { TypeReader::get().resolve_type_ref(self) } } impl std::fmt::Debug for TypeRef { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "{}.{}", self.namespace(), self.name()) } }