Skip to content

Commit

Permalink
Updated exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhouse committed Sep 6, 2023
1 parent 34119e5 commit 13892cc
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/tables/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Various types of tables and associated table items
//!
//! Each table type can be created (using TryFrom) from an appropriate section header
//! Each table type can be created (using TryFrom) from an appropriate section
//! struct. TryFrom will fail if the section isn't the correct type (e.g. non-SHT_SYMTAB
//! section header cannot be converted into a `Table<SymbolItem>` struct).
Expand All @@ -25,5 +25,15 @@ pub use items::{
pub use table::{
Table,
TableMut,
TableView
TableView,
Array,
ArrayMut,
SymbolTable,
SymbolTableMut,
RelTable,
RelTableMut,
RelaTable,
RelaTableMut,
StringTable,
StringTableMut,
};

0 comments on commit 13892cc

Please sign in to comment.