Enum alpm_sys::alpm_event_type_t
source · #[repr(u32)]pub enum alpm_event_type_t {
Show 37 variants
ALPM_EVENT_CHECKDEPS_START = 1,
ALPM_EVENT_CHECKDEPS_DONE = 2,
ALPM_EVENT_FILECONFLICTS_START = 3,
ALPM_EVENT_FILECONFLICTS_DONE = 4,
ALPM_EVENT_RESOLVEDEPS_START = 5,
ALPM_EVENT_RESOLVEDEPS_DONE = 6,
ALPM_EVENT_INTERCONFLICTS_START = 7,
ALPM_EVENT_INTERCONFLICTS_DONE = 8,
ALPM_EVENT_TRANSACTION_START = 9,
ALPM_EVENT_TRANSACTION_DONE = 10,
ALPM_EVENT_PACKAGE_OPERATION_START = 11,
ALPM_EVENT_PACKAGE_OPERATION_DONE = 12,
ALPM_EVENT_INTEGRITY_START = 13,
ALPM_EVENT_INTEGRITY_DONE = 14,
ALPM_EVENT_LOAD_START = 15,
ALPM_EVENT_LOAD_DONE = 16,
ALPM_EVENT_SCRIPTLET_INFO = 17,
ALPM_EVENT_DB_RETRIEVE_START = 18,
ALPM_EVENT_DB_RETRIEVE_DONE = 19,
ALPM_EVENT_DB_RETRIEVE_FAILED = 20,
ALPM_EVENT_PKG_RETRIEVE_START = 21,
ALPM_EVENT_PKG_RETRIEVE_DONE = 22,
ALPM_EVENT_PKG_RETRIEVE_FAILED = 23,
ALPM_EVENT_DISKSPACE_START = 24,
ALPM_EVENT_DISKSPACE_DONE = 25,
ALPM_EVENT_OPTDEP_REMOVAL = 26,
ALPM_EVENT_DATABASE_MISSING = 27,
ALPM_EVENT_KEYRING_START = 28,
ALPM_EVENT_KEYRING_DONE = 29,
ALPM_EVENT_KEY_DOWNLOAD_START = 30,
ALPM_EVENT_KEY_DOWNLOAD_DONE = 31,
ALPM_EVENT_PACNEW_CREATED = 32,
ALPM_EVENT_PACSAVE_CREATED = 33,
ALPM_EVENT_HOOK_START = 34,
ALPM_EVENT_HOOK_DONE = 35,
ALPM_EVENT_HOOK_RUN_START = 36,
ALPM_EVENT_HOOK_RUN_DONE = 37,
}
Expand description
Type of events. Type of events.
Variants§
ALPM_EVENT_CHECKDEPS_START = 1
Dependencies will be computed for a package.
ALPM_EVENT_CHECKDEPS_DONE = 2
Dependencies were computed for a package.
ALPM_EVENT_FILECONFLICTS_START = 3
File conflicts will be computed for a package.
ALPM_EVENT_FILECONFLICTS_DONE = 4
File conflicts were computed for a package.
ALPM_EVENT_RESOLVEDEPS_START = 5
Dependencies will be resolved for target package.
ALPM_EVENT_RESOLVEDEPS_DONE = 6
Dependencies were resolved for target package.
ALPM_EVENT_INTERCONFLICTS_START = 7
Inter-conflicts will be checked for target package.
ALPM_EVENT_INTERCONFLICTS_DONE = 8
Inter-conflicts were checked for target package.
ALPM_EVENT_TRANSACTION_START = 9
Processing the package transaction is starting.
ALPM_EVENT_TRANSACTION_DONE = 10
Processing the package transaction is finished.
ALPM_EVENT_PACKAGE_OPERATION_START = 11
Package will be installed/upgraded/downgraded/re-installed/removed; See alpm_event_package_operation_t for arguments.
ALPM_EVENT_PACKAGE_OPERATION_DONE = 12
Package was installed/upgraded/downgraded/re-installed/removed; See alpm_event_package_operation_t for arguments.
ALPM_EVENT_INTEGRITY_START = 13
Target package’s integrity will be checked.
ALPM_EVENT_INTEGRITY_DONE = 14
Target package’s integrity was checked.
ALPM_EVENT_LOAD_START = 15
Target package will be loaded.
ALPM_EVENT_LOAD_DONE = 16
Target package is finished loading.
ALPM_EVENT_SCRIPTLET_INFO = 17
Scriptlet has printed information; See alpm_event_scriptlet_info_t for arguments.
ALPM_EVENT_DB_RETRIEVE_START = 18
Database files will be downloaded from a repository.
ALPM_EVENT_DB_RETRIEVE_DONE = 19
Database files were downloaded from a repository.
ALPM_EVENT_DB_RETRIEVE_FAILED = 20
Not all database files were successfully downloaded from a repository.
ALPM_EVENT_PKG_RETRIEVE_START = 21
Package files will be downloaded from a repository.
ALPM_EVENT_PKG_RETRIEVE_DONE = 22
Package files were downloaded from a repository.
ALPM_EVENT_PKG_RETRIEVE_FAILED = 23
Not all package files were successfully downloaded from a repository.
ALPM_EVENT_DISKSPACE_START = 24
Disk space usage will be computed for a package.
ALPM_EVENT_DISKSPACE_DONE = 25
Disk space usage was computed for a package.
ALPM_EVENT_OPTDEP_REMOVAL = 26
An optdepend for another package is being removed; See alpm_event_optdep_removal_t for arguments.
ALPM_EVENT_DATABASE_MISSING = 27
A configured repository database is missing; See alpm_event_database_missing_t for arguments.
ALPM_EVENT_KEYRING_START = 28
Checking keys used to create signatures are in keyring.
ALPM_EVENT_KEYRING_DONE = 29
Keyring checking is finished.
ALPM_EVENT_KEY_DOWNLOAD_START = 30
Downloading missing keys into keyring.
ALPM_EVENT_KEY_DOWNLOAD_DONE = 31
Key downloading is finished.
ALPM_EVENT_PACNEW_CREATED = 32
A .pacnew file was created; See alpm_event_pacnew_created_t for arguments.
ALPM_EVENT_PACSAVE_CREATED = 33
A .pacsave file was created; See alpm_event_pacsave_created_t for arguments.
ALPM_EVENT_HOOK_START = 34
Processing hooks will be started.
ALPM_EVENT_HOOK_DONE = 35
Processing hooks is finished.
ALPM_EVENT_HOOK_RUN_START = 36
A hook is starting
ALPM_EVENT_HOOK_RUN_DONE = 37
A hook has finished running.
Trait Implementations§
source§impl Clone for _alpm_event_type_t
impl Clone for _alpm_event_type_t
source§fn clone(&self) -> _alpm_event_type_t
fn clone(&self) -> _alpm_event_type_t
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for _alpm_event_type_t
impl Debug for _alpm_event_type_t
source§impl Hash for _alpm_event_type_t
impl Hash for _alpm_event_type_t
source§impl PartialEq for _alpm_event_type_t
impl PartialEq for _alpm_event_type_t
source§fn eq(&self, other: &_alpm_event_type_t) -> bool
fn eq(&self, other: &_alpm_event_type_t) -> bool
self
and other
values to be equal, and is used
by ==
.