[][src]Enum alpm_sys::alpm_event_type_t

#[repr(u32)]pub enum alpm_event_type_t {
    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

ALPM_EVENT_CHECKDEPS_START

Dependencies will be computed for a package.

ALPM_EVENT_CHECKDEPS_DONE

Dependencies were computed for a package.

ALPM_EVENT_FILECONFLICTS_START

File conflicts will be computed for a package.

ALPM_EVENT_FILECONFLICTS_DONE

File conflicts were computed for a package.

ALPM_EVENT_RESOLVEDEPS_START

Dependencies will be resolved for target package.

ALPM_EVENT_RESOLVEDEPS_DONE

Dependencies were resolved for target package.

ALPM_EVENT_INTERCONFLICTS_START

Inter-conflicts will be checked for target package.

ALPM_EVENT_INTERCONFLICTS_DONE

Inter-conflicts were checked for target package.

ALPM_EVENT_TRANSACTION_START

Processing the package transaction is starting.

ALPM_EVENT_TRANSACTION_DONE

Processing the package transaction is finished.

ALPM_EVENT_PACKAGE_OPERATION_START

Package will be installed/upgraded/downgraded/re-installed/removed; See alpm_event_package_operation_t for arguments.

ALPM_EVENT_PACKAGE_OPERATION_DONE

Package was installed/upgraded/downgraded/re-installed/removed; See alpm_event_package_operation_t for arguments.

ALPM_EVENT_INTEGRITY_START

Target package's integrity will be checked.

ALPM_EVENT_INTEGRITY_DONE

Target package's integrity was checked.

ALPM_EVENT_LOAD_START

Target package will be loaded.

ALPM_EVENT_LOAD_DONE

Target package is finished loading.

ALPM_EVENT_SCRIPTLET_INFO

Scriptlet has printed information; See alpm_event_scriptlet_info_t for arguments.

ALPM_EVENT_RETRIEVE_START

Files will be downloaded from a repository.

ALPM_EVENT_RETRIEVE_DONE

Files were downloaded from a repository.

ALPM_EVENT_RETRIEVE_FAILED

Not all files were successfully downloaded from a repository.

ALPM_EVENT_PKGDOWNLOAD_START

A file will be downloaded from a repository; See alpm_event_pkgdownload_t for arguments

ALPM_EVENT_PKGDOWNLOAD_DONE

A file was downloaded from a repository; See alpm_event_pkgdownload_t for arguments

ALPM_EVENT_PKGDOWNLOAD_FAILED

A file failed to be downloaded from a repository; See alpm_event_pkgdownload_t for arguments

ALPM_EVENT_DISKSPACE_START

Disk space usage will be computed for a package.

ALPM_EVENT_DISKSPACE_DONE

Disk space usage was computed for a package.

ALPM_EVENT_OPTDEP_REMOVAL

An optdepend for another package is being removed; See alpm_event_optdep_removal_t for arguments.

ALPM_EVENT_DATABASE_MISSING

A configured repository database is missing; See alpm_event_database_missing_t for arguments.

ALPM_EVENT_KEYRING_START

Checking keys used to create signatures are in keyring.

ALPM_EVENT_KEYRING_DONE

Keyring checking is finished.

ALPM_EVENT_KEY_DOWNLOAD_START

Downloading missing keys into keyring.

ALPM_EVENT_KEY_DOWNLOAD_DONE

Key downloading is finished.

ALPM_EVENT_PACNEW_CREATED

A .pacnew file was created; See alpm_event_pacnew_created_t for arguments.

ALPM_EVENT_PACSAVE_CREATED

A .pacsave file was created; See alpm_event_pacsave_created_t for arguments

ALPM_EVENT_HOOK_START

Processing hooks will be started.

ALPM_EVENT_HOOK_DONE

Processing hooks is finished.

ALPM_EVENT_HOOK_RUN_START

A hook is starting

ALPM_EVENT_HOOK_RUN_DONE

A hook has finished running

Trait Implementations

impl Clone for _alpm_event_type_t[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]

impl PartialEq<_alpm_event_type_t> for _alpm_event_type_t[src]

impl StructuralEq for _alpm_event_type_t[src]

impl StructuralPartialEq for _alpm_event_type_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.