Struct libdwfl::Dwfl
[−]
[src]
pub struct Dwfl { /* fields omitted */ }Methods
impl Dwfl[src]
fn open<P: AsRef<Path>>(path: P) -> Result<Dwfl>
Open a Dwfl from a path.
Examples
let exe = std::env::current_exe().unwrap(); let dw = libdwfl::Dwfl::open(exe).unwrap();