#[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
impl Copy for _alpm_progress_t
impl Eq for _alpm_progress_t
impl StructuralPartialEq for _alpm_progress_t
Auto Trait Implementations§
impl Freeze for _alpm_progress_t
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