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,
}
Expand description

Type of events.

Variants

ALPM_EVENT_CHECKDEPS_START
Expand description

Dependencies will be computed for a package.

ALPM_EVENT_CHECKDEPS_DONE
Expand description

Dependencies were computed for a package.

ALPM_EVENT_FILECONFLICTS_START
Expand description

File conflicts will be computed for a package.

ALPM_EVENT_FILECONFLICTS_DONE
Expand description

File conflicts were computed for a package.

ALPM_EVENT_RESOLVEDEPS_START
Expand description

Dependencies will be resolved for target package.

ALPM_EVENT_RESOLVEDEPS_DONE
Expand description

Dependencies were resolved for target package.

ALPM_EVENT_INTERCONFLICTS_START
Expand description

Inter-conflicts will be checked for target package.

ALPM_EVENT_INTERCONFLICTS_DONE
Expand description

Inter-conflicts were checked for target package.

ALPM_EVENT_TRANSACTION_START
Expand description

Processing the package transaction is starting.

ALPM_EVENT_TRANSACTION_DONE
Expand description

Processing the package transaction is finished.

ALPM_EVENT_PACKAGE_OPERATION_START
Expand description

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

ALPM_EVENT_PACKAGE_OPERATION_DONE
Expand description

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

ALPM_EVENT_INTEGRITY_START
Expand description

Target package’s integrity will be checked.

ALPM_EVENT_INTEGRITY_DONE
Expand description

Target package’s integrity was checked.

ALPM_EVENT_LOAD_START
Expand description

Target package will be loaded.

ALPM_EVENT_LOAD_DONE
Expand description

Target package is finished loading.

ALPM_EVENT_SCRIPTLET_INFO
Expand description

Scriptlet has printed information; See alpm_event_scriptlet_info_t for arguments.

ALPM_EVENT_RETRIEVE_START
Expand description

Files will be downloaded from a repository.

ALPM_EVENT_RETRIEVE_DONE
Expand description

Files were downloaded from a repository.

ALPM_EVENT_RETRIEVE_FAILED
Expand description

Not all files were successfully downloaded from a repository.

ALPM_EVENT_PKGDOWNLOAD_START
Expand description

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

ALPM_EVENT_PKGDOWNLOAD_DONE
Expand description

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

ALPM_EVENT_PKGDOWNLOAD_FAILED
Expand description

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

ALPM_EVENT_DISKSPACE_START
Expand description

Disk space usage will be computed for a package.

ALPM_EVENT_DISKSPACE_DONE
Expand description

Disk space usage was computed for a package.

ALPM_EVENT_OPTDEP_REMOVAL
Expand description

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

ALPM_EVENT_DATABASE_MISSING
Expand description

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

ALPM_EVENT_KEYRING_START
Expand description

Checking keys used to create signatures are in keyring.

ALPM_EVENT_KEYRING_DONE
Expand description

Keyring checking is finished.

ALPM_EVENT_KEY_DOWNLOAD_START
Expand description

Downloading missing keys into keyring.

ALPM_EVENT_KEY_DOWNLOAD_DONE
Expand description

Key downloading is finished.

ALPM_EVENT_PACNEW_CREATED
Expand description

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

ALPM_EVENT_PACSAVE_CREATED
Expand description

A .pacsave file was created; See alpm_event_pacsave_created_t for arguments

ALPM_EVENT_HOOK_START
Expand description

Processing hooks will be started.

ALPM_EVENT_HOOK_DONE
Expand description

Processing hooks is finished.

ALPM_EVENT_HOOK_RUN_START
Expand description

A hook is starting

ALPM_EVENT_HOOK_RUN_DONE
Expand description

A hook has finished running

Trait Implementations

impl Clone for _alpm_event_type_t[src]

fn clone(&self) -> _alpm_event_type_t[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for _alpm_event_type_t[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Hash for _alpm_event_type_t[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl PartialEq<_alpm_event_type_t> for _alpm_event_type_t[src]

fn eq(&self, other: &_alpm_event_type_t) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Copy for _alpm_event_type_t[src]

impl Eq 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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.