#[repr(C)]pub struct _alpm_conflict_t {
pub package1: *mut alpm_pkg_t,
pub package2: *mut alpm_pkg_t,
pub reason: *mut alpm_depend_t,
}
Expand description
A conflict that has occurred between two packages.
Fields§
§package1: *mut alpm_pkg_t
The first package
package2: *mut alpm_pkg_t
The second package
reason: *mut alpm_depend_t
The conflict
Trait Implementations§
Source§impl Clone for _alpm_conflict_t
impl Clone for _alpm_conflict_t
Source§fn clone(&self) -> _alpm_conflict_t
fn clone(&self) -> _alpm_conflict_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_conflict_t
impl Debug for _alpm_conflict_t
impl Copy for _alpm_conflict_t
Auto Trait Implementations§
impl Freeze for _alpm_conflict_t
impl RefUnwindSafe for _alpm_conflict_t
impl !Send for _alpm_conflict_t
impl !Sync for _alpm_conflict_t
impl Unpin for _alpm_conflict_t
impl UnwindSafe for _alpm_conflict_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