#[repr(u32)]pub enum alpm_fileconflicttype_t {
ALPM_FILECONFLICT_TARGET = 1,
ALPM_FILECONFLICT_FILESYSTEM = 2,
}
Expand description
File conflict type. Whether the conflict results from a file existing on the filesystem, or with another target in the transaction. File conflict type. Whether the conflict results from a file existing on the filesystem, or with another target in the transaction.
Variants§
ALPM_FILECONFLICT_TARGET = 1
The conflict results with a another target in the transaction
ALPM_FILECONFLICT_FILESYSTEM = 2
The conflict results from a file existing on the filesystem
Trait Implementations§
source§impl Clone for _alpm_fileconflicttype_t
impl Clone for _alpm_fileconflicttype_t
source§fn clone(&self) -> _alpm_fileconflicttype_t
fn clone(&self) -> _alpm_fileconflicttype_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for _alpm_fileconflicttype_t
impl Debug for _alpm_fileconflicttype_t
source§impl Hash for _alpm_fileconflicttype_t
impl Hash for _alpm_fileconflicttype_t
source§impl PartialEq for _alpm_fileconflicttype_t
impl PartialEq for _alpm_fileconflicttype_t
source§fn eq(&self, other: &_alpm_fileconflicttype_t) -> bool
fn eq(&self, other: &_alpm_fileconflicttype_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for _alpm_fileconflicttype_t
impl Eq for _alpm_fileconflicttype_t
impl StructuralEq for _alpm_fileconflicttype_t
impl StructuralPartialEq for _alpm_fileconflicttype_t
Auto Trait Implementations§
impl RefUnwindSafe for _alpm_fileconflicttype_t
impl Send for _alpm_fileconflicttype_t
impl Sync for _alpm_fileconflicttype_t
impl Unpin for _alpm_fileconflicttype_t
impl UnwindSafe for _alpm_fileconflicttype_t
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more