summaryrefslogtreecommitdiff
path: root/vendor/object/src/build/mod.rs
blob: 5945f86be383ed59d0ea41bd8622855bcba122c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Interface for building object files.
//!
//! This module provides common types and traits used in the builders.
//!
//! The submodules define the builders for each file format.

mod error;
pub use error::{Error, Result};

mod bytes;
pub use bytes::{ByteString, Bytes};

mod table;
use table::IdPrivate;
pub use table::{Id, Item, Table};

#[cfg(feature = "elf")]
pub mod elf;