//! Information about the jemalloc compile-time configuration
use io;
use ;
/// A type providing access to the embedded configure-time-specified run-time options config.
///
/// The string will be empty unless `--with-malloc-conf` was specified during build configuration.
///
/// # Examples
///
/// ```
/// use jemalloc_ctl::config::MallocConf;
///
/// let malloc_conf = MallocConf::new().unwrap();
///
/// println!("default malloc conf: {}", malloc_conf.get().unwrap());
/// ```
;