Type Alias alpm_sys::alpm_fileconflict_t
source · pub type alpm_fileconflict_t = _alpm_fileconflict_t;
Expand description
File conflict.
A conflict that has happened due to a two packages containing the same file, or a package contains a file that is already on the filesystem and not owned by that package.
Aliased Type§
struct alpm_fileconflict_t {
pub target: *mut i8,
pub type_: _alpm_fileconflicttype_t,
pub file: *mut i8,
pub ctarget: *mut i8,
}
Fields§
§target: *mut i8
The name of the package that caused the conflict
type_: _alpm_fileconflicttype_t
The type of conflict
file: *mut i8
The name of the file that the package conflicts with
ctarget: *mut i8
The name of the package that also owns the file if there is one