Enum alpm_sys::_alpm_progress_t
source · #[repr(u32)]pub enum _alpm_progress_t {
ALPM_PROGRESS_ADD_START = 0,
ALPM_PROGRESS_UPGRADE_START = 1,
ALPM_PROGRESS_DOWNGRADE_START = 2,
ALPM_PROGRESS_REINSTALL_START = 3,
ALPM_PROGRESS_REMOVE_START = 4,
ALPM_PROGRESS_CONFLICTS_START = 5,
ALPM_PROGRESS_DISKSPACE_START = 6,
ALPM_PROGRESS_INTEGRITY_START = 7,
ALPM_PROGRESS_LOAD_START = 8,
ALPM_PROGRESS_KEYRING_START = 9,
}
Expand description
An enum over different kinds of progress alerts.
Variants§
ALPM_PROGRESS_ADD_START = 0
Package install
ALPM_PROGRESS_UPGRADE_START = 1
Package upgrade
ALPM_PROGRESS_DOWNGRADE_START = 2
Package downgrade
ALPM_PROGRESS_REINSTALL_START = 3
Package reinstall
ALPM_PROGRESS_REMOVE_START = 4
Package removal
ALPM_PROGRESS_CONFLICTS_START = 5
Conflict checking
ALPM_PROGRESS_DISKSPACE_START = 6
Diskspace checking
ALPM_PROGRESS_INTEGRITY_START = 7
Package Integrity checking
ALPM_PROGRESS_LOAD_START = 8
Loading packages from disk
ALPM_PROGRESS_KEYRING_START = 9
Checking signatures of packages
Trait Implementations§
source§impl Clone for _alpm_progress_t
impl Clone for _alpm_progress_t
source§fn clone(&self) -> _alpm_progress_t
fn clone(&self) -> _alpm_progress_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_progress_t
impl Debug for _alpm_progress_t
source§impl Hash for _alpm_progress_t
impl Hash for _alpm_progress_t
source§impl PartialEq for _alpm_progress_t
impl PartialEq for _alpm_progress_t
source§fn eq(&self, other: &_alpm_progress_t) -> bool
fn eq(&self, other: &_alpm_progress_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for _alpm_progress_t
impl Eq for _alpm_progress_t
impl StructuralEq for _alpm_progress_t
impl StructuralPartialEq for _alpm_progress_t
Auto Trait Implementations§
impl RefUnwindSafe for _alpm_progress_t
impl Send for _alpm_progress_t
impl Sync for _alpm_progress_t
impl Unpin for _alpm_progress_t
impl UnwindSafe for _alpm_progress_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