[][src]Crate alpm_rs

Modules

db
enums
error
macros
package
types

Structs

Handle

Alpm handle

Functions

initialize

Initializes the alpm library and retuns a handle. /// /// # Arguments /// /// * root - the root path for all filesystem operations /// * dbpath - the absolute path to the libalpm database /// /// # Example /// /// /// use alpm; /// let handle = alpm::initialize("/", "/var/lib/pacman").unwrap(); ///