Enum alpm_sys::alpm_event_type_t [−][src]
#[repr(u32)]
pub enum alpm_event_type_t {
Show variants
ALPM_EVENT_CHECKDEPS_START,
ALPM_EVENT_CHECKDEPS_DONE,
ALPM_EVENT_FILECONFLICTS_START,
ALPM_EVENT_FILECONFLICTS_DONE,
ALPM_EVENT_RESOLVEDEPS_START,
ALPM_EVENT_RESOLVEDEPS_DONE,
ALPM_EVENT_INTERCONFLICTS_START,
ALPM_EVENT_INTERCONFLICTS_DONE,
ALPM_EVENT_TRANSACTION_START,
ALPM_EVENT_TRANSACTION_DONE,
ALPM_EVENT_PACKAGE_OPERATION_START,
ALPM_EVENT_PACKAGE_OPERATION_DONE,
ALPM_EVENT_INTEGRITY_START,
ALPM_EVENT_INTEGRITY_DONE,
ALPM_EVENT_LOAD_START,
ALPM_EVENT_LOAD_DONE,
ALPM_EVENT_SCRIPTLET_INFO,
ALPM_EVENT_RETRIEVE_START,
ALPM_EVENT_RETRIEVE_DONE,
ALPM_EVENT_RETRIEVE_FAILED,
ALPM_EVENT_PKGDOWNLOAD_START,
ALPM_EVENT_PKGDOWNLOAD_DONE,
ALPM_EVENT_PKGDOWNLOAD_FAILED,
ALPM_EVENT_DISKSPACE_START,
ALPM_EVENT_DISKSPACE_DONE,
ALPM_EVENT_OPTDEP_REMOVAL,
ALPM_EVENT_DATABASE_MISSING,
ALPM_EVENT_KEYRING_START,
ALPM_EVENT_KEYRING_DONE,
ALPM_EVENT_KEY_DOWNLOAD_START,
ALPM_EVENT_KEY_DOWNLOAD_DONE,
ALPM_EVENT_PACNEW_CREATED,
ALPM_EVENT_PACSAVE_CREATED,
ALPM_EVENT_HOOK_START,
ALPM_EVENT_HOOK_DONE,
ALPM_EVENT_HOOK_RUN_START,
ALPM_EVENT_HOOK_RUN_DONE,
}Type of events.
Variants
Dependencies will be computed for a package.
Dependencies were computed for a package.
File conflicts will be computed for a package.
File conflicts were computed for a package.
Dependencies will be resolved for target package.
Dependencies were resolved for target package.
Inter-conflicts will be checked for target package.
Inter-conflicts were checked for target package.
Processing the package transaction is starting.
Processing the package transaction is finished.
Package will be installed/upgraded/downgraded/re-installed/removed; See alpm_event_package_operation_t for arguments.
Package was installed/upgraded/downgraded/re-installed/removed; See alpm_event_package_operation_t for arguments.
Target package’s integrity will be checked.
Target package’s integrity was checked.
Target package will be loaded.
Target package is finished loading.
Scriptlet has printed information; See alpm_event_scriptlet_info_t for arguments.
Files will be downloaded from a repository.
Files were downloaded from a repository.
Not all files were successfully downloaded from a repository.
A file will be downloaded from a repository; See alpm_event_pkgdownload_t for arguments
A file was downloaded from a repository; See alpm_event_pkgdownload_t for arguments
A file failed to be downloaded from a repository; See alpm_event_pkgdownload_t for arguments
Disk space usage will be computed for a package.
Disk space usage was computed for a package.
An optdepend for another package is being removed; See alpm_event_optdep_removal_t for arguments.
A configured repository database is missing; See alpm_event_database_missing_t for arguments.
Checking keys used to create signatures are in keyring.
Keyring checking is finished.
Downloading missing keys into keyring.
Key downloading is finished.
A .pacnew file was created; See alpm_event_pacnew_created_t for arguments.
A .pacsave file was created; See alpm_event_pacsave_created_t for arguments
Processing hooks will be started.
Processing hooks is finished.
A hook is starting
A hook has finished running
Trait Implementations
impl Clone for _alpm_event_type_t[src]
fn clone(&self) -> _alpm_event_type_t[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for _alpm_event_type_t[src]
impl Debug for _alpm_event_type_t[src]
impl Eq for _alpm_event_type_t[src]
impl Hash for _alpm_event_type_t[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<_alpm_event_type_t> for _alpm_event_type_t[src]
fn eq(&self, other: &_alpm_event_type_t) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for _alpm_event_type_t[src]
impl StructuralPartialEq for _alpm_event_type_t[src]
Auto Trait Implementations
impl RefUnwindSafe for _alpm_event_type_t
impl Send for _alpm_event_type_t
impl Sync for _alpm_event_type_t
impl Unpin for _alpm_event_type_t
impl UnwindSafe for _alpm_event_type_t
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,