windows_metadata/reader/tables/
module_ref.rs1use super::*;
2
3impl std::fmt::Debug for ModuleRef<'_> {
4 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
5 f.debug_tuple("ModuleRef").field(&self.name()).finish()
6 }
7}
8
9impl ModuleRef<'_> {
10 pub fn name(&self) -> &str {
11 self.str(0)
12 }
13}